Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexz707 authored and github-actions[bot] committed Feb 8, 2024
1 parent ab52399 commit 5bc2d74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/State/ResetPasswordProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ final class ResetPasswordProcessor implements ProcessorInterface
{
public function __construct(
private readonly UrlGeneratorInterface $router,
private readonly RequestStack $requestStack,
private readonly RateLimiterFactory $resetPasswordLimiter,
private readonly RequestStack $requestStack,
private readonly RateLimiterFactory $resetPasswordLimiter,
private readonly EventDispatcherInterface $eventDispatcher
) {
}
Expand Down Expand Up @@ -107,7 +107,7 @@ public function process(mixed $data, Operation $operation, array $uriVariables =
$mail = Tool::getMail([$user->getEmail()], 'Pimcore lost password service');
$mail->setIgnoreDebugMode(true);
$mail->text(
"Login to pimcore and change your password using the following link. ".
'Login to pimcore and change your password using the following link. '.
"This temporary login link will expire in 24 hours: \r\n\r\n" . $loginUrl
);
$mail->send();
Expand Down

0 comments on commit 5bc2d74

Please sign in to comment.