diff options
author | Elnur Abdurrakhimov <elnur@elnur.pro> | 2013-03-16 01:42:54 +0400 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2013-03-18 15:34:11 +0100 |
commit | 23c8abd9f9c296633ec0b146cbae815dff66664b (patch) | |
tree | 375507007a3e1a7c3a7c100058fde897093e17fa /Core/Authentication/Provider/AuthenticationProviderInterface.php | |
parent | efd261ec28fd9acfc1e2dadd18fc91236b2fb236 (diff) | |
download | symfony-security-23c8abd9f9c296633ec0b146cbae815dff66664b.zip symfony-security-23c8abd9f9c296633ec0b146cbae815dff66664b.tar.gz symfony-security-23c8abd9f9c296633ec0b146cbae815dff66664b.tar.bz2 |
Add a public modifier to an interface methodv2.1.9
Diffstat (limited to 'Core/Authentication/Provider/AuthenticationProviderInterface.php')
-rw-r--r-- | Core/Authentication/Provider/AuthenticationProviderInterface.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Authentication/Provider/AuthenticationProviderInterface.php b/Core/Authentication/Provider/AuthenticationProviderInterface.php index 956adf1..f63a924 100644 --- a/Core/Authentication/Provider/AuthenticationProviderInterface.php +++ b/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); } |