summaryrefslogtreecommitdiffstats
path: root/Acl/Model/MutableAclInterface.php
diff options
context:
space:
mode:
authorPascal Borreli <pascal@borreli.com>2011-04-23 15:05:44 +0000
committerPascal Borreli <pascal@borreli.com>2011-04-23 15:18:47 +0000
commite2231da7eadcdc2ec5ac5be89ce3d21422dfafd6 (patch)
treef32c9af26b3d40607668ea13c1ed307549b15b4f /Acl/Model/MutableAclInterface.php
parentbadc0d6f36373b81ab66c48342e024649321700f (diff)
downloadsymfony-security-e2231da7eadcdc2ec5ac5be89ce3d21422dfafd6.zip
symfony-security-e2231da7eadcdc2ec5ac5be89ce3d21422dfafd6.tar.gz
symfony-security-e2231da7eadcdc2ec5ac5be89ce3d21422dfafd6.tar.bz2
[Phpdoc] Cleaning/fixing
Diffstat (limited to 'Acl/Model/MutableAclInterface.php')
-rw-r--r--Acl/Model/MutableAclInterface.php36
1 files changed, 18 insertions, 18 deletions
diff --git a/Acl/Model/MutableAclInterface.php b/Acl/Model/MutableAclInterface.php
index fdd6712..9a64709 100644
--- a/Acl/Model/MutableAclInterface.php
+++ b/Acl/Model/MutableAclInterface.php
@@ -66,10 +66,10 @@ interface MutableAclInterface extends AclInterface
* Inserts a class-based ACE
*
* @param SecurityIdentityInterface $sid
- * @param integer $mask
- * @param integer $index
- * @param Boolean $granting
- * @param string $strategy
+ * @param integer $mask
+ * @param integer $index
+ * @param Boolean $granting
+ * @param string $strategy
* @return void
*/
function insertClassAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
@@ -77,12 +77,12 @@ interface MutableAclInterface extends AclInterface
/**
* Inserts a class-field-based ACE
*
- * @param string $field
+ * @param string $field
* @param SecurityIdentityInterface $sid
- * @param integer $mask
- * @param integer $index
- * @param Boolean $granting
- * @param string $strategy
+ * @param integer $mask
+ * @param integer $index
+ * @param Boolean $granting
+ * @param string $strategy
* @return void
*/
function insertClassFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
@@ -91,10 +91,10 @@ interface MutableAclInterface extends AclInterface
* Inserts an object-based ACE
*
* @param SecurityIdentityInterface $sid
- * @param integer $mask
- * @param integer $index
- * @param Boolean $granting
- * @param string $strategy
+ * @param integer $mask
+ * @param integer $index
+ * @param Boolean $granting
+ * @param string $strategy
* @return void
*/
function insertObjectAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
@@ -102,12 +102,12 @@ interface MutableAclInterface extends AclInterface
/**
* Inserts an object-field-based ACE
*
- * @param string $field
+ * @param string $field
* @param SecurityIdentityInterface $sid
- * @param integer $mask
- * @param integer $index
- * @param Boolean $granting
- * @param string $strategy
+ * @param integer $mask
+ * @param integer $index
+ * @param Boolean $granting
+ * @param string $strategy
* @return void
*/
function insertObjectFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);