diff options
Diffstat (limited to 'Acl/Model/AclInterface.php')
-rw-r--r-- | Acl/Model/AclInterface.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Acl/Model/AclInterface.php b/Acl/Model/AclInterface.php index c5bbf18..6a70a7c 100644 --- a/Acl/Model/AclInterface.php +++ b/Acl/Model/AclInterface.php @@ -26,14 +26,14 @@ use Symfony\Component\Security\Acl\Exception\NoAceFoundException; interface AclInterface extends \Serializable { /** - * Returns all class-based ACEs associated with this ACL + * Returns all class-based ACEs associated with this ACL. * * @return array */ public function getClassAces(); /** - * Returns all class-field-based ACEs associated with this ACL + * Returns all class-field-based ACEs associated with this ACL. * * @param string $field * @@ -42,14 +42,14 @@ interface AclInterface extends \Serializable public function getClassFieldAces($field); /** - * Returns all object-based ACEs associated with this ACL + * Returns all object-based ACEs associated with this ACL. * * @return array */ public function getObjectAces(); /** - * Returns all object-field-based ACEs associated with this ACL + * Returns all object-field-based ACEs associated with this ACL. * * @param string $field * @@ -58,7 +58,7 @@ interface AclInterface extends \Serializable public function getObjectFieldAces($field); /** - * Returns the object identity associated with this ACL + * Returns the object identity associated with this ACL. * * @return ObjectIdentityInterface */ @@ -79,7 +79,7 @@ interface AclInterface extends \Serializable public function isEntriesInheriting(); /** - * Determines whether field access is granted + * Determines whether field access is granted. * * @param string $field * @param array $masks @@ -91,7 +91,7 @@ interface AclInterface extends \Serializable public function isFieldGranted($field, array $masks, array $securityIdentities, $administrativeMode = false); /** - * Determines whether access is granted + * Determines whether access is granted. * * @param array $masks * @param array $securityIdentities @@ -104,7 +104,7 @@ interface AclInterface extends \Serializable public function isGranted(array $masks, array $securityIdentities, $administrativeMode = false); /** - * Whether the ACL has loaded ACEs for all of the passed security identities + * Whether the ACL has loaded ACEs for all of the passed security identities. * * @param mixed $securityIdentities an implementation of SecurityIdentityInterface, or an array thereof * |