File tree Expand file tree Collapse file tree 5 files changed +20
-13
lines changed
Bundle/SecurityBundle/Tests/DependencyInjection Expand file tree Collapse file tree 5 files changed +20
-13
lines changed Original file line number Diff line number Diff line change @@ -986,7 +986,7 @@ public function checkPreAuth(UserInterface $user): void
986986 {
987987 }
988988
989- public function checkPostAuth (UserInterface $ user ): void
989+ public function checkPostAuth (UserInterface $ user, ? TokenInterface $ token = null ): void
990990 {
991991 }
992992}
Original file line number Diff line number Diff line change @@ -159,10 +159,12 @@ public function testSetExtraKeyMethodIsNotGeneratedWhenAllowExtraKeysIsFalse()
159159 */
160160 private function generateConfigBuilder (string $ configurationClass , ?string &$ outputDir = null )
161161 {
162- $ outputDir = tempnam (sys_get_temp_dir (), 'sf_config_builder_ ' );
163- unlink ($ outputDir );
164- mkdir ($ outputDir );
165- $ this ->tempDir [] = $ outputDir ;
162+ if (null === $ outputDir ) {
163+ $ outputDir = tempnam (sys_get_temp_dir (), 'sf_config_builder_ ' );
164+ unlink ($ outputDir );
165+ mkdir ($ outputDir );
166+ $ this ->tempDir [] = $ outputDir ;
167+ }
166168
167169 $ configuration = new $ configurationClass ();
168170 $ rootNode = $ configuration ->getConfigTreeBuilder ()->buildTree ();
Original file line number Diff line number Diff line change @@ -29,16 +29,15 @@ public function checkPreAuth(UserInterface $user): void
2929 }
3030 }
3131
32- public function checkPostAuth (UserInterface $ user /* , TokenInterface $token */ ): void
32+ /**
33+ * @param ?TokenInterface $token
34+ */
35+ public function checkPostAuth (UserInterface $ user /* , ?TokenInterface $token = null */ ): void
3336 {
3437 $ token = 1 < \func_num_args () ? func_get_arg (1 ) : null ;
3538
3639 foreach ($ this ->checkers as $ checker ) {
37- if ($ token instanceof TokenInterface) {
38- $ checker ->checkPostAuth ($ user , $ token );
39- } else {
40- $ checker ->checkPostAuth ($ user );
41- }
40+ $ checker ->checkPostAuth ($ user , $ token );
4241 }
4342 }
4443}
Original file line number Diff line number Diff line change @@ -33,7 +33,10 @@ public function checkPreAuth(UserInterface $user): void
3333 }
3434 }
3535
36- public function checkPostAuth (UserInterface $ user ): void
36+ /**
37+ * @param ?TokenInterface $token
38+ */
39+ public function checkPostAuth (UserInterface $ user /* , ?TokenInterface $token = null */ ): void
3740 {
3841 }
3942}
Original file line number Diff line number Diff line change 1111
1212namespace Symfony \Component \Security \Core \User ;
1313
14+ use Symfony \Component \Security \Core \Authentication \Token \TokenInterface ;
1415use Symfony \Component \Security \Core \Exception \AccountStatusException ;
1516
1617/**
@@ -33,7 +34,9 @@ public function checkPreAuth(UserInterface $user): void;
3334 /**
3435 * Checks the user account after authentication.
3536 *
37+ * @param ?TokenInterface $token
38+ *
3639 * @throws AccountStatusException
3740 */
38- public function checkPostAuth (UserInterface $ user /* , TokenInterface $token */ ): void ;
41+ public function checkPostAuth (UserInterface $ user /* , ? TokenInterface $token = null */ ): void ;
3942}
You can’t perform that action at this time.
0 commit comments