Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a5ff172

Browse filesBrowse files
committed
add r to handleR
1 parent a8a4829 commit a5ff172
Copy full SHA for a5ff172

File tree

2 files changed

+3
-3
lines changed
Filter options

2 files changed

+3
-3
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Security/Http/Authorization/SameAsNotFullFledgedHandler.php
+1-1Lines 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

Copy file name to clipboardExpand all lines: src/Symfony/Component/Security/Http/Tests/Firewall/ExceptionListenerTest.php
+2-2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.