Skip to content

Commit e2ceb30

Browse files
committed
fixed CS
1 parent cb84cd7 commit e2ceb30

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Authentication/DefaultAuthenticationFailureHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtil
5353
'failure_path' => null,
5454
'failure_forward' => false,
5555
'login_path' => '/login',
56-
'failure_path_parameter' => '_failure_path'
56+
'failure_path_parameter' => '_failure_path',
5757
), $options);
5858
}
5959

@@ -63,7 +63,7 @@ public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtil
6363
public function onAuthenticationFailure(Request $request, AuthenticationException $exception)
6464
{
6565
if ($failureUrl = $request->get($this->options['failure_path_parameter'], null, true)) {
66-
$this->options['failure_path'] = $failureUrl;
66+
$this->options['failure_path'] = $failureUrl;
6767
}
6868

6969
if (null === $this->options['failure_path']) {

RememberMe/TokenBasedRememberMeServices.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ protected function generateCookieValue($class, $username, $expires, $password)
129129
$class,
130130
base64_encode($username),
131131
$expires,
132-
$this->generateCookieHash($class, $username, $expires, $password)
132+
$this->generateCookieHash($class, $username, $expires, $password),
133133
));
134134
}
135135

0 commit comments

Comments
 (0)