summaryrefslogtreecommitdiffstats
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
parent3c065747901d8ba53056cb769cb1ef986e39c1d0 (diff)
downloadsymfony-security-a408a8a27c9f808193e2128845153ddeb411345e.zip
symfony-security-a408a8a27c9f808193e2128845153ddeb411345e.tar.gz
symfony-security-a408a8a27c9f808193e2128845153ddeb411345e.tar.bz2
made {@inheritdoc} annotations consistent across the board
-rw-r--r--Acl/Dbal/AclProvider.php6
-rw-r--r--Acl/Dbal/MutableAclProvider.php10
-rw-r--r--Acl/Domain/Acl.php58
-rw-r--r--Acl/Domain/DoctrineAclCache.php12
-rw-r--r--Acl/Domain/Entry.php16
-rw-r--r--Acl/Domain/FieldEntry.php6
-rw-r--r--Acl/Domain/ObjectIdentity.php6
-rw-r--r--Acl/Domain/ObjectIdentityRetrievalStrategy.php2
-rw-r--r--Acl/Domain/PermissionGrantingStrategy.php4
-rw-r--r--Acl/Domain/RoleSecurityIdentity.php2
-rw-r--r--Acl/Domain/SecurityIdentityRetrievalStrategy.php2
-rw-r--r--Acl/Domain/UserSecurityIdentity.php2
-rw-r--r--Acl/Permission/BasicPermissionMap.php4
-rw-r--r--Core/Authentication/AuthenticationTrustResolver.php6
-rw-r--r--Core/Authentication/Token/AbstractToken.php2
-rw-r--r--Core/Authentication/Token/AnonymousToken.php4
-rw-r--r--Core/Encoder/EncoderFactory.php2
-rw-r--r--Core/Exception/AccountExpiredException.php2
-rw-r--r--Core/Exception/AccountStatusException.php4
-rw-r--r--Core/Exception/AuthenticationCredentialsNotFoundException.php2
-rw-r--r--Core/Exception/AuthenticationServiceException.php2
-rw-r--r--Core/Exception/BadCredentialsException.php2
-rw-r--r--Core/Exception/CookieTheftException.php2
-rw-r--r--Core/Exception/CredentialsExpiredException.php2
-rw-r--r--Core/Exception/DisabledException.php2
-rw-r--r--Core/Exception/InsufficientAuthenticationException.php2
-rw-r--r--Core/Exception/InvalidCsrfTokenException.php2
-rw-r--r--Core/Exception/LockedException.php2
-rw-r--r--Core/Exception/NonceExpiredException.php2
-rw-r--r--Core/Exception/ProviderNotFoundException.php2
-rw-r--r--Core/Exception/SessionUnavailableException.php2
-rw-r--r--Core/Exception/TokenNotFoundException.php2
-rw-r--r--Core/Exception/UsernameNotFoundException.php6
-rw-r--r--Core/User/ChainUserProvider.php6
-rw-r--r--Core/User/InMemoryUserProvider.php4
-rw-r--r--Http/AccessMap.php2
-rw-r--r--Http/Authentication/DefaultAuthenticationFailureHandler.php2
-rw-r--r--Http/Authentication/DefaultAuthenticationSuccessHandler.php2
-rw-r--r--Http/Firewall.php2
-rw-r--r--Http/FirewallMap.php2
-rw-r--r--Http/Logout/DefaultLogoutSuccessHandler.php2
-rw-r--r--Http/RememberMe/PersistentTokenBasedRememberMeServices.php6
-rw-r--r--Http/RememberMe/ResponseListener.php2
-rw-r--r--Http/RememberMe/TokenBasedRememberMeServices.php4
-rw-r--r--Http/Session/SessionAuthenticationStrategy.php2
45 files changed, 109 insertions, 109 deletions
diff --git a/Acl/Dbal/AclProvider.php b/Acl/Dbal/AclProvider.php
index 57c5329..d1b6198 100644
--- a/Acl/Dbal/AclProvider.php
+++ b/Acl/Dbal/AclProvider.php
@@ -64,7 +64,7 @@ class AclProvider implements AclProviderInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function findChildren(ObjectIdentityInterface $parentOid, $directChildrenOnly = false)
{
@@ -79,7 +79,7 @@ class AclProvider implements AclProviderInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function findAcl(ObjectIdentityInterface $oid, array $sids = array())
{
@@ -87,7 +87,7 @@ class AclProvider implements AclProviderInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function findAcls(array $oids, array $sids = array())
{
diff --git a/Acl/Dbal/MutableAclProvider.php b/Acl/Dbal/MutableAclProvider.php
index 7b0f4bc..8ca2880 100644
--- a/Acl/Dbal/MutableAclProvider.php
+++ b/Acl/Dbal/MutableAclProvider.php
@@ -36,7 +36,7 @@ class MutableAclProvider extends AclProvider implements MutableAclProviderInterf
private $propertyChanges;
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function __construct(Connection $connection, PermissionGrantingStrategyInterface $permissionGrantingStrategy, array $options, AclCacheInterface $cache = null)
{
@@ -46,7 +46,7 @@ class MutableAclProvider extends AclProvider implements MutableAclProviderInterf
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function createAcl(ObjectIdentityInterface $oid)
{
@@ -73,7 +73,7 @@ class MutableAclProvider extends AclProvider implements MutableAclProviderInterf
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function deleteAcl(ObjectIdentityInterface $oid)
{
@@ -109,7 +109,7 @@ class MutableAclProvider extends AclProvider implements MutableAclProviderInterf
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function findAcls(array $oids, array $sids = array())
{
@@ -216,7 +216,7 @@ class MutableAclProvider extends AclProvider implements MutableAclProviderInterf
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function updateAcl(MutableAclInterface $acl)
{
diff --git a/Acl/Domain/Acl.php b/Acl/Domain/Acl.php
index 41b2cd6..cd02751 100644
--- a/Acl/Domain/Acl.php
+++ b/Acl/Domain/Acl.php
@@ -81,7 +81,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function deleteClassAce($index)
{
@@ -89,7 +89,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function deleteClassFieldAce($index, $field)
{
@@ -97,7 +97,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function deleteObjectAce($index)
{
@@ -105,7 +105,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function deleteObjectFieldAce($index, $field)
{
@@ -113,7 +113,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getClassAces()
{
@@ -121,7 +121,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getClassFieldAces($field)
{
@@ -129,7 +129,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getObjectAces()
{
@@ -137,7 +137,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getObjectFieldAces($field)
{
@@ -145,7 +145,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getId()
{
@@ -153,7 +153,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getObjectIdentity()
{
@@ -161,7 +161,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getParentAcl()
{
@@ -169,7 +169,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function insertClassAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null)
{
@@ -177,7 +177,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function insertClassFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null)
{
@@ -185,7 +185,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function insertObjectAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null)
{
@@ -193,7 +193,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function insertObjectFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null)
{
@@ -201,7 +201,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isEntriesInheriting()
{
@@ -209,7 +209,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isFieldGranted($field, array $masks, array $securityIdentities, $administrativeMode = false)
{
@@ -217,7 +217,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isGranted(array $masks, array $securityIdentities, $administrativeMode = false)
{
@@ -225,7 +225,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isSidLoaded($sids)
{
@@ -297,7 +297,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function setEntriesInheriting($boolean)
{
@@ -308,7 +308,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function setParentAcl(AclInterface $acl = null)
{
@@ -323,7 +323,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function updateClassAce($index, $mask, $strategy = null)
{
@@ -331,7 +331,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function updateClassFieldAce($index, $field, $mask, $strategy = null)
{
@@ -339,7 +339,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function updateObjectAce($index, $mask, $strategy = null)
{
@@ -347,7 +347,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function updateObjectFieldAce($index, $field, $mask, $strategy = null)
{
@@ -355,7 +355,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function updateClassAuditing($index, $auditSuccess, $auditFailure)
{
@@ -363,7 +363,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function updateClassFieldAuditing($index, $field, $auditSuccess, $auditFailure)
{
@@ -375,7 +375,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function updateObjectAuditing($index, $auditSuccess, $auditFailure)
{
@@ -383,7 +383,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function updateObjectFieldAuditing($index, $field, $auditSuccess, $auditFailure)
{
diff --git a/Acl/Domain/DoctrineAclCache.php b/Acl/Domain/DoctrineAclCache.php
index bfc5452..b680fb1 100644
--- a/Acl/Domain/DoctrineAclCache.php
+++ b/Acl/Domain/DoctrineAclCache.php
@@ -51,7 +51,7 @@ class DoctrineAclCache implements AclCacheInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function clearCache()
{
@@ -59,7 +59,7 @@ class DoctrineAclCache implements AclCacheInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function evictFromCacheById($aclId)
{
@@ -77,7 +77,7 @@ class DoctrineAclCache implements AclCacheInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function evictFromCacheByIdentity(ObjectIdentityInterface $oid)
{
@@ -90,7 +90,7 @@ class DoctrineAclCache implements AclCacheInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getFromCacheById($aclId)
{
@@ -110,7 +110,7 @@ class DoctrineAclCache implements AclCacheInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getFromCacheByIdentity(ObjectIdentityInterface $oid)
{
@@ -123,7 +123,7 @@ class DoctrineAclCache implements AclCacheInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function putInCache(AclInterface $acl)
{
diff --git a/Acl/Domain/Entry.php b/Acl/Domain/Entry.php
index f49c95b..b5eb28b 100644
--- a/Acl/Domain/Entry.php
+++ b/Acl/Domain/Entry.php
@@ -56,7 +56,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getAcl()
{
@@ -64,7 +64,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMask()
{
@@ -72,7 +72,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getId()
{
@@ -80,7 +80,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getSecurityIdentity()
{
@@ -88,7 +88,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getStrategy()
{
@@ -96,7 +96,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isAuditFailure()
{
@@ -104,7 +104,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isAuditSuccess()
{
@@ -112,7 +112,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isGranting()
{
diff --git a/Acl/Domain/FieldEntry.php b/Acl/Domain/FieldEntry.php
index e4554f9..2edc33d 100644
--- a/Acl/Domain/FieldEntry.php
+++ b/Acl/Domain/FieldEntry.php
@@ -45,7 +45,7 @@ class FieldEntry extends Entry implements FieldEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getField()
{
@@ -53,7 +53,7 @@ class FieldEntry extends Entry implements FieldEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function serialize()
{
@@ -64,7 +64,7 @@ class FieldEntry extends Entry implements FieldEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function unserialize($serialized)
{
diff --git a/Acl/Domain/ObjectIdentity.php b/Acl/Domain/ObjectIdentity.php
index d7d5f84..cf10330 100644
--- a/Acl/Domain/ObjectIdentity.php
+++ b/Acl/Domain/ObjectIdentity.php
@@ -74,7 +74,7 @@ final class ObjectIdentity implements ObjectIdentityInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getIdentifier()
{
@@ -82,7 +82,7 @@ final class ObjectIdentity implements ObjectIdentityInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getType()
{
@@ -90,7 +90,7 @@ final class ObjectIdentity implements ObjectIdentityInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function equals(ObjectIdentityInterface $identity)
{
diff --git a/Acl/Domain/ObjectIdentityRetrievalStrategy.php b/Acl/Domain/ObjectIdentityRetrievalStrategy.php
index acd3b2c..7dc552c 100644
--- a/Acl/Domain/ObjectIdentityRetrievalStrategy.php
+++ b/Acl/Domain/ObjectIdentityRetrievalStrategy.php
@@ -22,7 +22,7 @@ use Symfony\Component\Security\Acl\Model\ObjectIdentityRetrievalStrategyInterfac
class ObjectIdentityRetrievalStrategy implements ObjectIdentityRetrievalStrategyInterface
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getObjectIdentity($domainObject)
{
diff --git a/Acl/Domain/PermissionGrantingStrategy.php b/Acl/Domain/PermissionGrantingStrategy.php
index 0ebb8bc..d031b34 100644
--- a/Acl/Domain/PermissionGrantingStrategy.php
+++ b/Acl/Domain/PermissionGrantingStrategy.php
@@ -42,7 +42,7 @@ class PermissionGrantingStrategy implements PermissionGrantingStrategyInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isGranted(AclInterface $acl, array $masks, array $sids, $administrativeMode = false)
{
@@ -74,7 +74,7 @@ class PermissionGrantingStrategy implements PermissionGrantingStrategyInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isFieldGranted(AclInterface $acl, $field, array $masks, array $sids, $administrativeMode = false)
{
diff --git a/Acl/Domain/RoleSecurityIdentity.php b/Acl/Domain/RoleSecurityIdentity.php
index 0d3d0d2..64f864d 100644
--- a/Acl/Domain/RoleSecurityIdentity.php
+++ b/Acl/Domain/RoleSecurityIdentity.php
@@ -48,7 +48,7 @@ final class RoleSecurityIdentity implements SecurityIdentityInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function equals(SecurityIdentityInterface $sid)
{
diff --git a/Acl/Domain/SecurityIdentityRetrievalStrategy.php b/Acl/Domain/SecurityIdentityRetrievalStrategy.php
index dbc0530..b95fddc 100644
--- a/Acl/Domain/SecurityIdentityRetrievalStrategy.php
+++ b/Acl/Domain/SecurityIdentityRetrievalStrategy.php
@@ -42,7 +42,7 @@ class SecurityIdentityRetrievalStrategy implements SecurityIdentityRetrievalStra
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getSecurityIdentities(TokenInterface $token)
{
diff --git a/Acl/Domain/UserSecurityIdentity.php b/Acl/Domain/UserSecurityIdentity.php
index 3166a1a..9418c81 100644
--- a/Acl/Domain/UserSecurityIdentity.php
+++ b/Acl/Domain/UserSecurityIdentity.php
@@ -96,7 +96,7 @@ final class UserSecurityIdentity implements SecurityIdentityInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function equals(SecurityIdentityInterface $sid)
{
diff --git a/Acl/Permission/BasicPermissionMap.php b/Acl/Permission/BasicPermissionMap.php
index 97157f1..30d801f 100644
--- a/Acl/Permission/BasicPermissionMap.php
+++ b/Acl/Permission/BasicPermissionMap.php
@@ -87,7 +87,7 @@ class BasicPermissionMap implements PermissionMapInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMasks($permission, $object)
{
@@ -99,7 +99,7 @@ class BasicPermissionMap implements PermissionMapInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function contains($permission)
{
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)
{
diff --git a/Core/Encoder/EncoderFactory.php b/Core/Encoder/EncoderFactory.php
index 8bad61f..0337380 100644
--- a/Core/Encoder/EncoderFactory.php
+++ b/Core/Encoder/EncoderFactory.php
@@ -26,7 +26,7 @@ class EncoderFactory implements EncoderFactoryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getEncoder($user)
{
diff --git a/Core/Exception/AccountExpiredException.php b/Core/Exception/AccountExpiredException.php
index a5618ce..4a71263 100644
--- a/Core/Exception/AccountExpiredException.php
+++ b/Core/Exception/AccountExpiredException.php
@@ -20,7 +20,7 @@ namespace Symfony\Component\Security\Core\Exception;
class AccountExpiredException extends AccountStatusException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/AccountStatusException.php b/Core/Exception/AccountStatusException.php
index 7819e4d..9b29f63 100644
--- a/Core/Exception/AccountStatusException.php
+++ b/Core/Exception/AccountStatusException.php
@@ -45,7 +45,7 @@ abstract class AccountStatusException extends AuthenticationException
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function serialize()
{
@@ -56,7 +56,7 @@ abstract class AccountStatusException extends AuthenticationException
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function unserialize($str)
{
diff --git a/Core/Exception/AuthenticationCredentialsNotFoundException.php b/Core/Exception/AuthenticationCredentialsNotFoundException.php
index 633b2be..8595bed 100644
--- a/Core/Exception/AuthenticationCredentialsNotFoundException.php
+++ b/Core/Exception/AuthenticationCredentialsNotFoundException.php
@@ -21,7 +21,7 @@ namespace Symfony\Component\Security\Core\Exception;
class AuthenticationCredentialsNotFoundException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/AuthenticationServiceException.php b/Core/Exception/AuthenticationServiceException.php
index 758a4f0..66f051d 100644
--- a/Core/Exception/AuthenticationServiceException.php
+++ b/Core/Exception/AuthenticationServiceException.php
@@ -20,7 +20,7 @@ namespace Symfony\Component\Security\Core\Exception;
class AuthenticationServiceException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/BadCredentialsException.php b/Core/Exception/BadCredentialsException.php
index 5deecca..be061c7 100644
--- a/Core/Exception/BadCredentialsException.php
+++ b/Core/Exception/BadCredentialsException.php
@@ -20,7 +20,7 @@ namespace Symfony\Component\Security\Core\Exception;
class BadCredentialsException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/CookieTheftException.php b/Core/Exception/CookieTheftException.php
index 8d9e154..af97168 100644
--- a/Core/Exception/CookieTheftException.php
+++ b/Core/Exception/CookieTheftException.php
@@ -21,7 +21,7 @@ namespace Symfony\Component\Security\Core\Exception;
class CookieTheftException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/CredentialsExpiredException.php b/Core/Exception/CredentialsExpiredException.php
index b9bf2d1..bcc1267 100644
--- a/Core/Exception/CredentialsExpiredException.php
+++ b/Core/Exception/CredentialsExpiredException.php
@@ -20,7 +20,7 @@ namespace Symfony\Component\Security\Core\Exception;
class CredentialsExpiredException extends AccountStatusException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/DisabledException.php b/Core/Exception/DisabledException.php
index 5571ab1..e9b784f 100644
--- a/Core/Exception/DisabledException.php
+++ b/Core/Exception/DisabledException.php
@@ -20,7 +20,7 @@ namespace Symfony\Component\Security\Core\Exception;
class DisabledException extends AccountStatusException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/InsufficientAuthenticationException.php b/Core/Exception/InsufficientAuthenticationException.php
index 74fc2b9..e33ef6a 100644
--- a/Core/Exception/InsufficientAuthenticationException.php
+++ b/Core/Exception/InsufficientAuthenticationException.php
@@ -22,7 +22,7 @@ namespace Symfony\Component\Security\Core\Exception;
class InsufficientAuthenticationException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/InvalidCsrfTokenException.php b/Core/Exception/InvalidCsrfTokenException.php
index ce0e1f4..84be855 100644
--- a/Core/Exception/InvalidCsrfTokenException.php
+++ b/Core/Exception/InvalidCsrfTokenException.php
@@ -20,7 +20,7 @@ namespace Symfony\Component\Security\Core\Exception;
class InvalidCsrfTokenException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/LockedException.php b/Core/Exception/LockedException.php
index 6532f70..fffae74 100644
--- a/Core/Exception/LockedException.php
+++ b/Core/Exception/LockedException.php
@@ -20,7 +20,7 @@ namespace Symfony\Component\Security\Core\Exception;
class LockedException extends AccountStatusException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/NonceExpiredException.php b/Core/Exception/NonceExpiredException.php
index 2f6681f..998e987 100644
--- a/Core/Exception/NonceExpiredException.php
+++ b/Core/Exception/NonceExpiredException.php
@@ -21,7 +21,7 @@ namespace Symfony\Component\Security\Core\Exception;
class NonceExpiredException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/ProviderNotFoundException.php b/Core/Exception/ProviderNotFoundException.php
index ea2b1fd..af2e1b5 100644
--- a/Core/Exception/ProviderNotFoundException.php
+++ b/Core/Exception/ProviderNotFoundException.php
@@ -21,7 +21,7 @@ namespace Symfony\Component\Security\Core\Exception;
class ProviderNotFoundException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/SessionUnavailableException.php b/Core/Exception/SessionUnavailableException.php
index 4b47b18..90b858a 100644
--- a/Core/Exception/SessionUnavailableException.php
+++ b/Core/Exception/SessionUnavailableException.php
@@ -26,7 +26,7 @@ namespace Symfony\Component\Security\Core\Exception;
class SessionUnavailableException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/TokenNotFoundException.php b/Core/Exception/TokenNotFoundException.php
index fb85abf..b050302 100644
--- a/Core/Exception/TokenNotFoundException.php
+++ b/Core/Exception/TokenNotFoundException.php
@@ -20,7 +20,7 @@ namespace Symfony\Component\Security\Core\Exception;
class TokenNotFoundException extends AuthenticationException
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
diff --git a/Core/Exception/UsernameNotFoundException.php b/Core/Exception/UsernameNotFoundException.php
index f656bac..11607d3 100644
--- a/Core/Exception/UsernameNotFoundException.php
+++ b/Core/Exception/UsernameNotFoundException.php
@@ -22,7 +22,7 @@ class UsernameNotFoundException extends AuthenticationException
private $username;
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMessageKey()
{
@@ -50,7 +50,7 @@ class UsernameNotFoundException extends AuthenticationException
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function serialize()
{
@@ -61,7 +61,7 @@ class UsernameNotFoundException extends AuthenticationException
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function unserialize($str)
{
diff --git a/Core/User/ChainUserProvider.php b/Core/User/ChainUserProvider.php
index fc72074..6e14a4f 100644
--- a/Core/User/ChainUserProvider.php
+++ b/Core/User/ChainUserProvider.php
@@ -40,7 +40,7 @@ class ChainUserProvider implements UserProviderInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function loadUserByUsername($username)
{
@@ -58,7 +58,7 @@ class ChainUserProvider implements UserProviderInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function refreshUser(UserInterface $user)
{
@@ -85,7 +85,7 @@ class ChainUserProvider implements UserProviderInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function supportsClass($class)
{
diff --git a/Core/User/InMemoryUserProvider.php b/Core/User/InMemoryUserProvider.php
index 074c21e..624eb3d 100644
--- a/Core/User/InMemoryUserProvider.php
+++ b/Core/User/InMemoryUserProvider.php
@@ -81,7 +81,7 @@ class InMemoryUserProvider implements UserProviderInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function refreshUser(UserInterface $user)
{
@@ -93,7 +93,7 @@ class InMemoryUserProvider implements UserProviderInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function supportsClass($class)
{
diff --git a/Http/AccessMap.php b/Http/AccessMap.php
index 051a8c2..14fcbe1 100644
--- a/Http/AccessMap.php
+++ b/Http/AccessMap.php
@@ -37,7 +37,7 @@ class AccessMap implements AccessMapInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getPatterns(Request $request)
{
diff --git a/Http/Authentication/DefaultAuthenticationFailureHandler.php b/Http/Authentication/DefaultAuthenticationFailureHandler.php
index 70dcd1e..f106a4a 100644
--- a/Http/Authentication/DefaultAuthenticationFailureHandler.php
+++ b/Http/Authentication/DefaultAuthenticationFailureHandler.php
@@ -58,7 +58,7 @@ class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandle
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function onAuthenticationFailure(Request $request, AuthenticationException $exception)
{
diff --git a/Http/Authentication/DefaultAuthenticationSuccessHandler.php b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
index 0c084b9..54d6fc1 100644
--- a/Http/Authentication/DefaultAuthenticationSuccessHandler.php
+++ b/Http/Authentication/DefaultAuthenticationSuccessHandler.php
@@ -48,7 +48,7 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function onAuthenticationSuccess(Request $request, TokenInterface $token)
{
diff --git a/Http/Firewall.php b/Http/Firewall.php
index 4f1cf30..7499c6f 100644
--- a/Http/Firewall.php
+++ b/Http/Firewall.php
@@ -72,7 +72,7 @@ class Firewall implements EventSubscriberInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public static function getSubscribedEvents()
{
diff --git a/Http/FirewallMap.php b/Http/FirewallMap.php
index 0554bed..1bb73bd 100644
--- a/Http/FirewallMap.php
+++ b/Http/FirewallMap.php
@@ -36,7 +36,7 @@ class FirewallMap implements FirewallMapInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getListeners(Request $request)
{
diff --git a/Http/Logout/DefaultLogoutSuccessHandler.php b/Http/Logout/DefaultLogoutSuccessHandler.php
index 70f15cf..48626b0 100644
--- a/Http/Logout/DefaultLogoutSuccessHandler.php
+++ b/Http/Logout/DefaultLogoutSuccessHandler.php
@@ -37,7 +37,7 @@ class DefaultLogoutSuccessHandler implements LogoutSuccessHandlerInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function onLogoutSuccess(Request $request)
{
diff --git a/Http/RememberMe/PersistentTokenBasedRememberMeServices.php b/Http/RememberMe/PersistentTokenBasedRememberMeServices.php
index 6500bfd..12478dc 100644
--- a/Http/RememberMe/PersistentTokenBasedRememberMeServices.php
+++ b/Http/RememberMe/PersistentTokenBasedRememberMeServices.php
@@ -62,7 +62,7 @@ class PersistentTokenBasedRememberMeServices extends AbstractRememberMeServices
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function cancelCookie(Request $request)
{
@@ -79,7 +79,7 @@ class PersistentTokenBasedRememberMeServices extends AbstractRememberMeServices
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function processAutoLoginCookie(array $cookieParts, Request $request)
{
@@ -117,7 +117,7 @@ class PersistentTokenBasedRememberMeServices extends AbstractRememberMeServices
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function onLoginSuccess(Request $request, Response $response, TokenInterface $token)
{
diff --git a/Http/RememberMe/ResponseListener.php b/Http/RememberMe/ResponseListener.php
index 6087587..2253c5d 100644
--- a/Http/RememberMe/ResponseListener.php
+++ b/Http/RememberMe/ResponseListener.php
@@ -36,7 +36,7 @@ class ResponseListener implements EventSubscriberInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public static function getSubscribedEvents()
{
diff --git a/Http/RememberMe/TokenBasedRememberMeServices.php b/Http/RememberMe/TokenBasedRememberMeServices.php
index 64d41be..75a2a0d 100644
--- a/Http/RememberMe/TokenBasedRememberMeServices.php
+++ b/Http/RememberMe/TokenBasedRememberMeServices.php
@@ -27,7 +27,7 @@ use Symfony\Component\Security\Core\User\UserInterface;
class TokenBasedRememberMeServices extends AbstractRememberMeServices
{
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function processAutoLoginCookie(array $cookieParts, Request $request)
{
@@ -90,7 +90,7 @@ class TokenBasedRememberMeServices extends AbstractRememberMeServices
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
protected function onLoginSuccess(Request $request, Response $response, TokenInterface $token)
{
diff --git a/Http/Session/SessionAuthenticationStrategy.php b/Http/Session/SessionAuthenticationStrategy.php
index e9c9826..17160a1 100644
--- a/Http/Session/SessionAuthenticationStrategy.php
+++ b/Http/Session/SessionAuthenticationStrategy.php
@@ -38,7 +38,7 @@ class SessionAuthenticationStrategy implements SessionAuthenticationStrategyInte
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function onAuthentication(Request $request, TokenInterface $token)
{