diff options
Diffstat (limited to 'Acl/Model/EntryInterface.php')
-rw-r--r-- | Acl/Model/EntryInterface.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Acl/Model/EntryInterface.php b/Acl/Model/EntryInterface.php index 6fe0dc8..98b754c 100644 --- a/Acl/Model/EntryInterface.php +++ b/Acl/Model/EntryInterface.php @@ -26,40 +26,40 @@ interface EntryInterface extends \Serializable * * @return AclInterface */ - function getAcl(); + public function getAcl(); /** * The primary key of this ACE * * @return integer */ - function getId(); + public function getId(); /** * The permission mask of this ACE * * @return integer */ - function getMask(); + public function getMask(); /** * The security identity associated with this ACE * * @return SecurityIdentityInterface */ - function getSecurityIdentity(); + public function getSecurityIdentity(); /** * The strategy for comparing masks * * @return string */ - function getStrategy(); + public function getStrategy(); /** * Returns whether this ACE is granting, or denying * * @return Boolean */ - function isGranting(); + public function isGranting(); } |