@@ -525,7 +525,7 @@ public function testSecretRememberMeHandler()
525525 $ this ->assertSame ('very ' , $ handler ->getArgument (1 ));
526526 }
527527
528- public function sessionConfigurationProvider ()
528+ public static function sessionConfigurationProvider ()
529529 {
530530 return [
531531 [
@@ -546,7 +546,7 @@ public function sessionConfigurationProvider()
546546 ];
547547 }
548548
549- public function acceptableIpsProvider (): iterable
549+ public static function acceptableIpsProvider (): iterable
550550 {
551551 yield [['127.0.0.1 ' ]];
552552 yield ['127.0.0.1 ' ];
@@ -657,7 +657,7 @@ public function testAuthenticatorManagerEnabledEntryPoint(array $firewall, $entr
657657 $ this ->assertEquals ($ entryPointId , (string ) $ container ->getDefinition ('security.exception_listener.main ' )->getArgument (4 ));
658658 }
659659
660- public function provideEntryPointFirewalls ()
660+ public static function provideEntryPointFirewalls ()
661661 {
662662 // only one entry point available
663663 yield [['http_basic ' => true ], 'security.authenticator.http_basic.main ' ];
@@ -697,7 +697,7 @@ public function testEntryPointRequired(array $firewall, $messageRegex)
697697 $ container ->compile ();
698698 }
699699
700- public function provideEntryPointRequiredData ()
700+ public static function provideEntryPointRequiredData ()
701701 {
702702 // more than one entry point available and not explicitly set
703703 yield [
@@ -747,7 +747,7 @@ public function testConfigureCustomAuthenticator(array $firewall, array $expecte
747747 $ this ->assertEquals ($ expectedAuthenticators , array_map ('strval ' , $ container ->getDefinition ('security.authenticator.manager.main ' )->getArgument (0 )));
748748 }
749749
750- public function provideConfigureCustomAuthenticatorData ()
750+ public static function provideConfigureCustomAuthenticatorData ()
751751 {
752752 yield [
753753 ['custom_authenticator ' => TestAuthenticator::class],
@@ -827,7 +827,7 @@ public function testUserCheckerWithAuthenticatorManager(array $config, string $e
827827 $ this ->assertEquals ($ expectedUserCheckerClass , $ container ->findDefinition ($ userCheckerId )->getClass ());
828828 }
829829
830- public function provideUserCheckerConfig ()
830+ public static function provideUserCheckerConfig ()
831831 {
832832 yield [[], InMemoryUserChecker::class];
833833 yield [['user_checker ' => TestUserChecker::class], TestUserChecker::class];
0 commit comments