summaryrefslogtreecommitdiffstats
path: root/Acl/Model/MutableAclInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Acl/Model/MutableAclInterface.php')
-rw-r--r--Acl/Model/MutableAclInterface.php30
1 files changed, 15 insertions, 15 deletions
diff --git a/Acl/Model/MutableAclInterface.php b/Acl/Model/MutableAclInterface.php
index f84e817..9028aa9 100644
--- a/Acl/Model/MutableAclInterface.php
+++ b/Acl/Model/MutableAclInterface.php
@@ -26,7 +26,7 @@ interface MutableAclInterface extends AclInterface
*
* @param integer $index
*/
- function deleteClassAce($index);
+ public function deleteClassAce($index);
/**
* Deletes a class-field-based ACE
@@ -34,14 +34,14 @@ interface MutableAclInterface extends AclInterface
* @param integer $index
* @param string $field
*/
- function deleteClassFieldAce($index, $field);
+ public function deleteClassFieldAce($index, $field);
/**
* Deletes an object-based ACE
*
* @param integer $index
*/
- function deleteObjectAce($index);
+ public function deleteObjectAce($index);
/**
* Deletes an object-field-based ACE
@@ -49,14 +49,14 @@ interface MutableAclInterface extends AclInterface
* @param integer $index
* @param string $field
*/
- function deleteObjectFieldAce($index, $field);
+ public function deleteObjectFieldAce($index, $field);
/**
* Returns the primary key of this ACL
*
* @return integer
*/
- function getId();
+ public function getId();
/**
* Inserts a class-based ACE
@@ -67,7 +67,7 @@ interface MutableAclInterface extends AclInterface
* @param Boolean $granting
* @param string $strategy
*/
- function insertClassAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
+ public function insertClassAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
/**
* Inserts a class-field-based ACE
@@ -79,7 +79,7 @@ interface MutableAclInterface extends AclInterface
* @param Boolean $granting
* @param string $strategy
*/
- function insertClassFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
+ public function insertClassFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
/**
* Inserts an object-based ACE
@@ -90,7 +90,7 @@ interface MutableAclInterface extends AclInterface
* @param Boolean $granting
* @param string $strategy
*/
- function insertObjectAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
+ public function insertObjectAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
/**
* Inserts an object-field-based ACE
@@ -102,14 +102,14 @@ interface MutableAclInterface extends AclInterface
* @param Boolean $granting
* @param string $strategy
*/
- function insertObjectFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
+ public function insertObjectFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
/**
* Sets whether entries are inherited
*
* @param Boolean $boolean
*/
- function setEntriesInheriting($boolean);
+ public function setEntriesInheriting($boolean);
/**
* Sets the parent ACL
@@ -117,7 +117,7 @@ interface MutableAclInterface extends AclInterface
* @param AclInterface|null $acl
* @return void
*/
- function setParentAcl(AclInterface $acl = null);
+ public function setParentAcl(AclInterface $acl = null);
/**
* Updates a class-based ACE
@@ -126,7 +126,7 @@ interface MutableAclInterface extends AclInterface
* @param integer $mask
* @param string $strategy if null the strategy should not be changed
*/
- function updateClassAce($index, $mask, $strategy = null);
+ public function updateClassAce($index, $mask, $strategy = null);
/**
* Updates a class-field-based ACE
@@ -136,7 +136,7 @@ interface MutableAclInterface extends AclInterface
* @param integer $mask
* @param string $strategy if null the strategy should not be changed
*/
- function updateClassFieldAce($index, $field, $mask, $strategy = null);
+ public function updateClassFieldAce($index, $field, $mask, $strategy = null);
/**
* Updates an object-based ACE
@@ -145,7 +145,7 @@ interface MutableAclInterface extends AclInterface
* @param integer $mask
* @param string $strategy if null the strategy should not be changed
*/
- function updateObjectAce($index, $mask, $strategy = null);
+ public function updateObjectAce($index, $mask, $strategy = null);
/**
* Updates an object-field-based ACE
@@ -155,5 +155,5 @@ interface MutableAclInterface extends AclInterface
* @param integer $mask
* @param string $strategy if null the strategy should not be changed
*/
- function updateObjectFieldAce($index, $field, $mask, $strategy = null);
+ public function updateObjectFieldAce($index, $field, $mask, $strategy = null);
}