summaryrefslogtreecommitdiffstats
path: root/Core/Authentication
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2014-04-15 07:57:34 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2014-04-16 09:04:20 +0200
commita408a8a27c9f808193e2128845153ddeb411345e (patch)
treeb07cd9aca168b2ab2c7f994f5e1b4b05a22de4ed /Core/Authentication
parent3c065747901d8ba53056cb769cb1ef986e39c1d0 (diff)
downloadsymfony-security-a408a8a27c9f808193e2128845153ddeb411345e.zip
symfony-security-a408a8a27c9f808193e2128845153ddeb411345e.tar.gz
symfony-security-a408a8a27c9f808193e2128845153ddeb411345e.tar.bz2
made {@inheritdoc} annotations consistent across the board
Diffstat (limited to 'Core/Authentication')
-rw-r--r--Core/Authentication/AuthenticationTrustResolver.php6
-rw-r--r--Core/Authentication/Token/AbstractToken.php2
-rw-r--r--Core/Authentication/Token/AnonymousToken.php4
3 files changed, 6 insertions, 6 deletions
diff --git a/Core/Authentication/AuthenticationTrustResolver.php b/Core/Authentication/AuthenticationTrustResolver.php
index 9b3ff3d..d030459 100644
--- a/Core/Authentication/AuthenticationTrustResolver.php
+++ b/Core/Authentication/AuthenticationTrustResolver.php
@@ -36,7 +36,7 @@ class AuthenticationTrustResolver implements AuthenticationTrustResolverInterfac
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isAnonymous(TokenInterface $token = null)
{
@@ -48,7 +48,7 @@ class AuthenticationTrustResolver implements AuthenticationTrustResolverInterfac
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isRememberMe(TokenInterface $token = null)
{
@@ -60,7 +60,7 @@ class AuthenticationTrustResolver implements AuthenticationTrustResolverInterfac
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isFullFledged(TokenInterface $token = null)
{
diff --git a/Core/Authentication/Token/AbstractToken.php b/Core/Authentication/Token/AbstractToken.php
index b86e025..c22522c 100644
--- a/Core/Authentication/Token/AbstractToken.php
+++ b/Core/Authentication/Token/AbstractToken.php
@@ -229,7 +229,7 @@ abstract class AbstractToken implements TokenInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function __toString()
{
diff --git a/Core/Authentication/Token/AnonymousToken.php b/Core/Authentication/Token/AnonymousToken.php
index d39fec8..571816c 100644
--- a/Core/Authentication/Token/AnonymousToken.php
+++ b/Core/Authentication/Token/AnonymousToken.php
@@ -57,7 +57,7 @@ class AnonymousToken extends AbstractToken
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function serialize()
{
@@ -65,7 +65,7 @@ class AnonymousToken extends AbstractToken
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function unserialize($serialized)
{