diff options
Diffstat (limited to 'Acl/Domain')
-rw-r--r-- | Acl/Domain/Acl.php | 58 | ||||
-rw-r--r-- | Acl/Domain/DoctrineAclCache.php | 12 | ||||
-rw-r--r-- | Acl/Domain/Entry.php | 16 | ||||
-rw-r--r-- | Acl/Domain/FieldEntry.php | 6 | ||||
-rw-r--r-- | Acl/Domain/ObjectIdentity.php | 6 | ||||
-rw-r--r-- | Acl/Domain/ObjectIdentityRetrievalStrategy.php | 2 | ||||
-rw-r--r-- | Acl/Domain/PermissionGrantingStrategy.php | 4 | ||||
-rw-r--r-- | Acl/Domain/RoleSecurityIdentity.php | 2 | ||||
-rw-r--r-- | Acl/Domain/SecurityIdentityRetrievalStrategy.php | 2 | ||||
-rw-r--r-- | Acl/Domain/UserSecurityIdentity.php | 2 |
10 files changed, 55 insertions, 55 deletions
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) { |