8000 add r to handleR · symfony/symfony@a5ff172 · GitHub
[go: up one dir, main page]

Skip to content

Commit a5ff172

Browse files
committed
add r to handleR
1 parent a8a4829 commit a5ff172

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Symfony/Component/Security/Http/Authorization/SameAsNotFullFledgedHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
2020

2121
/**
22-
* This is a basic NotFullFledgedHandle
22+
* This is a basic NotFullFledgedHandler
2323
* If IS_AUTHENTICATED_FULLY is in access denied Exception Attrribute, behavior will be as before,
2424
* Otherwise The original AccessDeniedException is throw
2525
*

src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ private function createEvent(\Exception $exception, $kernel = null)
267267
return new ExceptionEvent($kernel, Request::create('/'), HttpKernelInterface::MAIN_REQUEST, $exception);
268268
}
269269

270-
private function createExceptionListener(?TokenStorageInterface $tokenStorage = null, ?AuthenticationTrustResolverInterface $trustResolver = null, ?HttpUtils $httpUtils = null, ?AuthenticationEntryPointInterface $authenticationEntryPoint = null, $errorPage = null, ?AccessDeniedHandlerInterface $accessDeniedHandler = null, ?NotFullFledgedHandlerInterface $notFullFledgedHandle = null)
270+
private function createExceptionListener(?TokenStorageInterface $tokenStorage = null, ?AuthenticationTrustResolverInterface $trustResolver = null, ?HttpUtils $httpUtils = null, ?AuthenticationEntryPointInterface $authenticationEntryPoint = null, $errorPage = null, ?AccessDeniedHandlerInterface $accessDeniedHandler = null, ?NotFullFledgedHandlerInterface $notFullFledgedHandler = null)
271271
{
272272
return new ExceptionListener(
273273
$tokenStorage ?? $this->createMock(TokenStorageInterface::class),
@@ -279,7 +279,7 @@ private function createExceptionListener(?TokenStorageInterface $tokenStorage =
279279
$accessDeniedHandler,
280280
null,
281281
false,
282-
$notFullFledgedHandle,
282+
$notFullFledgedHandler,
283283
);
284284
}
285285

0 commit comments

Comments
 (0)
0