diff options
author | Graham Campbell <graham@mineuk.com> | 2014-12-21 17:00:50 +0000 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-22 16:58:09 +0100 |
commit | a542abcf38b95de8e8f01f42b6127e7fffc645a8 (patch) | |
tree | c84aaf43e18f7fc448861b918a5785a117013fb6 /Acl/Model/EntryInterface.php | |
parent | 3b1993579d11af545a1effd2cb3367665dd5a5fd (diff) | |
download | symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.zip symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.tar.gz symfony-security-a542abcf38b95de8e8f01f42b6127e7fffc645a8.tar.bz2 |
[2.3] CS And DocBlock Fixes
Diffstat (limited to 'Acl/Model/EntryInterface.php')
-rw-r--r-- | Acl/Model/EntryInterface.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Acl/Model/EntryInterface.php b/Acl/Model/EntryInterface.php index b33f1f0..0b244b7 100644 --- a/Acl/Model/EntryInterface.php +++ b/Acl/Model/EntryInterface.php @@ -29,35 +29,35 @@ interface EntryInterface extends \Serializable public function getAcl(); /** - * The primary key of this ACE + * The primary key of this ACE. * * @return int */ public function getId(); /** - * The permission mask of this ACE + * The permission mask of this ACE. * * @return int */ public function getMask(); /** - * The security identity associated with this ACE + * The security identity associated with this ACE. * * @return SecurityIdentityInterface */ public function getSecurityIdentity(); /** - * The strategy for comparing masks + * The strategy for comparing masks. * * @return string */ public function getStrategy(); /** - * Returns whether this ACE is granting, or denying + * Returns whether this ACE is granting, or denying. * * @return bool */ |