From 8ee05e54366ac0a5762136624a631b86cdca7ae6 Mon Sep 17 00:00:00 2001 From: Elnur Abdurrakhimov Date: Sat, 16 Mar 2013 01:42:54 +0400 Subject: [PATCH] Add a public modifier to an interface method --- .../Authentication/Provider/AuthenticationProviderInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Core/Authentication/Provider/AuthenticationProviderInterface.php b/src/Symfony/Component/Security/Core/Authentication/Provider/AuthenticationProviderInterface.php index c8432163b6969..dfa8fae1d4c54 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Provider/AuthenticationProviderInterface.php +++ b/src/Symfony/Component/Security/Core/Authentication/Provider/AuthenticationProviderInterface.php @@ -31,5 +31,5 @@ interface AuthenticationProviderInterface extends AuthenticationManagerInterface * * @return Boolean true if the implementation supports the Token, false otherwise */ - function supports(TokenInterface $token); + public function supports(TokenInterface $token); }