File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Expand file tree Collapse file tree 3 files changed +13
-8
lines changed 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