diff options
Diffstat (limited to 'Acl/Model/MutableAclInterface.php')
-rw-r--r-- | Acl/Model/MutableAclInterface.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Acl/Model/MutableAclInterface.php b/Acl/Model/MutableAclInterface.php index a846a9f..f84e817 100644 --- a/Acl/Model/MutableAclInterface.php +++ b/Acl/Model/MutableAclInterface.php @@ -32,7 +32,7 @@ interface MutableAclInterface extends AclInterface * Deletes a class-field-based ACE * * @param integer $index - * @param string $field + * @param string $field */ function deleteClassFieldAce($index, $field); @@ -47,7 +47,7 @@ interface MutableAclInterface extends AclInterface * Deletes an object-field-based ACE * * @param integer $index - * @param string $field + * @param string $field */ function deleteObjectFieldAce($index, $field); @@ -124,7 +124,7 @@ interface MutableAclInterface extends AclInterface * * @param integer $index * @param integer $mask - * @param string $strategy if null the strategy should not be changed + * @param string $strategy if null the strategy should not be changed */ function updateClassAce($index, $mask, $strategy = null); @@ -132,9 +132,9 @@ interface MutableAclInterface extends AclInterface * Updates a class-field-based ACE * * @param integer $index - * @param string $field + * @param string $field * @param integer $mask - * @param string $strategy if null the strategy should not be changed + * @param string $strategy if null the strategy should not be changed */ function updateClassFieldAce($index, $field, $mask, $strategy = null); @@ -143,7 +143,7 @@ interface MutableAclInterface extends AclInterface * * @param integer $index * @param integer $mask - * @param string $strategy if null the strategy should not be changed + * @param string $strategy if null the strategy should not be changed */ function updateObjectAce($index, $mask, $strategy = null); @@ -151,9 +151,9 @@ interface MutableAclInterface extends AclInterface * Updates an object-field-based ACE * * @param integer $index - * @param string $field + * @param string $field * @param integer $mask - * @param string $strategy if null the strategy should not be changed + * @param string $strategy if null the strategy should not be changed */ function updateObjectFieldAce($index, $field, $mask, $strategy = null); } |