diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-05-18 19:37:58 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-05-18 19:37:58 +0200 |
commit | f09e6217820114cf983ce26501d20bfe6095dec9 (patch) | |
tree | adcadcb63ade970ee9afe88ee3621ead1fe688bc /Acl/Model | |
parent | 7e660fe744c1a2ce2256e114641a3b9fdd4880a1 (diff) | |
download | symfony-security-f09e6217820114cf983ce26501d20bfe6095dec9.zip symfony-security-f09e6217820114cf983ce26501d20bfe6095dec9.tar.gz symfony-security-f09e6217820114cf983ce26501d20bfe6095dec9.tar.bz2 |
fixed CS
Diffstat (limited to 'Acl/Model')
-rw-r--r-- | Acl/Model/AclProviderInterface.php | 4 | ||||
-rw-r--r-- | Acl/Model/AuditLoggerInterface.php | 2 | ||||
-rw-r--r-- | Acl/Model/AuditableAclInterface.php | 4 | ||||
-rw-r--r-- | Acl/Model/MutableAclInterface.php | 16 |
4 files changed, 13 insertions, 13 deletions
diff --git a/Acl/Model/AclProviderInterface.php b/Acl/Model/AclProviderInterface.php index 12f55e0..2f878e1 100644 --- a/Acl/Model/AclProviderInterface.php +++ b/Acl/Model/AclProviderInterface.php @@ -22,7 +22,7 @@ interface AclProviderInterface * Retrieves all child object identities from the database * * @param ObjectIdentityInterface $parentOid - * @param Boolean $directChildrenOnly + * @param Boolean $directChildrenOnly * @return array returns an array of child 'ObjectIdentity's */ function findChildren(ObjectIdentityInterface $parentOid, $directChildrenOnly = false); @@ -32,7 +32,7 @@ interface AclProviderInterface * * @throws AclNotFoundException when there is no ACL * @param ObjectIdentityInterface $oid - * @param array $sids + * @param array $sids * @return AclInterface */ function findAcl(ObjectIdentityInterface $oid, array $sids = array()); diff --git a/Acl/Model/AuditLoggerInterface.php b/Acl/Model/AuditLoggerInterface.php index dceb76b..f4a83b3 100644 --- a/Acl/Model/AuditLoggerInterface.php +++ b/Acl/Model/AuditLoggerInterface.php @@ -22,7 +22,7 @@ interface AuditLoggerInterface * This method is called whenever access is granted, or denied, and * administrative mode is turned off. * - * @param Boolean $granted + * @param Boolean $granted * @param EntryInterface $ace * @return void */ diff --git a/Acl/Model/AuditableAclInterface.php b/Acl/Model/AuditableAclInterface.php index 2a6d619..8f473ff 100644 --- a/Acl/Model/AuditableAclInterface.php +++ b/Acl/Model/AuditableAclInterface.php @@ -32,7 +32,7 @@ interface AuditableAclInterface extends MutableAclInterface * Updates auditing for class-field-based ACE * * @param integer $index - * @param string $field + * @param string $field * @param Boolean $auditSuccess * @param Boolean $auditFailure * @return void @@ -54,7 +54,7 @@ interface AuditableAclInterface extends MutableAclInterface * Updates auditing for object-field-based ACE * * @param integer $index - * @param string $field + * @param string $field * @param Boolean $auditSuccess * @param Boolean $auditFailure * @return void diff --git a/Acl/Model/MutableAclInterface.php b/Acl/Model/MutableAclInterface.php index 54a3f8e..b83c106 100644 --- a/Acl/Model/MutableAclInterface.php +++ b/Acl/Model/MutableAclInterface.php @@ -33,7 +33,7 @@ interface MutableAclInterface extends AclInterface * Deletes a class-field-based ACE * * @param integer $index - * @param string $field + * @param string $field * @return void */ function deleteClassFieldAce($index, $field); @@ -50,7 +50,7 @@ interface MutableAclInterface extends AclInterface * Deletes an object-field-based ACE * * @param integer $index - * @param string $field + * @param string $field * @return void */ function deleteObjectFieldAce($index, $field); @@ -133,7 +133,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 * @return void */ function updateClassAce($index, $mask, $strategy = null); @@ -142,9 +142,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 * @return void */ function updateClassFieldAce($index, $field, $mask, $strategy = null); @@ -154,7 +154,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 * @return void */ function updateObjectAce($index, $mask, $strategy = null); @@ -163,9 +163,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 * @return void */ function updateObjectFieldAce($index, $field, $mask, $strategy = null); |