diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-07 19:28:24 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-07 19:28:24 +0100 |
commit | 16bedc2baf42deacbe8f0a48f311557c7859d3dc (patch) | |
tree | 8e5959f4ee7df53f60ed96a161c8a4e05be9d3cd | |
parent | fb346b5d8d3055cd99b30ede477dde8cf7ffec3d (diff) | |
parent | 5f80f9515fbc3afe977fd2bbf4549e2a94edca24 (diff) | |
download | symfony-security-16bedc2baf42deacbe8f0a48f311557c7859d3dc.zip symfony-security-16bedc2baf42deacbe8f0a48f311557c7859d3dc.tar.gz symfony-security-16bedc2baf42deacbe8f0a48f311557c7859d3dc.tar.bz2 |
minor #12887 [2.3] CS Fixes: fix phpdoc's alignment (keradus)
This PR was merged into the 2.3 branch.
Discussion
----------
[2.3] CS Fixes: fix phpdoc's alignment
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | ?
| Fixed tickets | N/A
| License | MIT
| Doc PR | N/A
Fix phpdoc's alignment
Commits
-------
f588610 fix phpdoc's alignment
-rw-r--r-- | Core/Authentication/Provider/AuthenticationProviderInterface.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Core/Authentication/Provider/AuthenticationProviderInterface.php b/Core/Authentication/Provider/AuthenticationProviderInterface.php index 401df6d..8007234 100644 --- a/Core/Authentication/Provider/AuthenticationProviderInterface.php +++ b/Core/Authentication/Provider/AuthenticationProviderInterface.php @@ -24,12 +24,12 @@ use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterfac */ interface AuthenticationProviderInterface extends AuthenticationManagerInterface { - /** - * Checks whether this provider supports the given token. - * - * @param TokenInterface $token A TokenInterface instance - * - * @return bool true if the implementation supports the Token, false otherwise - */ + /** + * Checks whether this provider supports the given token. + * + * @param TokenInterface $token A TokenInterface instance + * + * @return bool true if the implementation supports the Token, false otherwise + */ public function supports(TokenInterface $token); } |