Fixed the AuthenticationProviderInterface alignment

This commit is contained in:
Graham Campbell 2014-12-09 12:18:23 +00:00
parent a835b18203
commit 1270327d83

View File

@ -24,12 +24,12 @@ use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterfac
*/ */
interface AuthenticationProviderInterface extends AuthenticationManagerInterface interface AuthenticationProviderInterface extends AuthenticationManagerInterface
{ {
/** /**
* Checks whether this provider supports the given token. * Checks whether this provider supports the given token.
* *
* @param TokenInterface $token A TokenInterface instance * @param TokenInterface $token A TokenInterface instance
* *
* @return bool true if the implementation supports the Token, false otherwise * @return bool true if the implementation supports the Token, false otherwise
*/ */
public function supports(TokenInterface $token); public function supports(TokenInterface $token);
} }