diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2012-05-15 18:56:32 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-05-15 18:56:32 +0200 |
commit | 7e660fe744c1a2ce2256e114641a3b9fdd4880a1 (patch) | |
tree | fdbe227f1d0b81cafa1f7e64b8641e1cef164801 /Acl | |
parent | f4dfadfa0789281be909efb415d69e01342be53d (diff) | |
download | symfony-security-7e660fe744c1a2ce2256e114641a3b9fdd4880a1.zip symfony-security-7e660fe744c1a2ce2256e114641a3b9fdd4880a1.tar.gz symfony-security-7e660fe744c1a2ce2256e114641a3b9fdd4880a1.tar.bz2 |
fixed phpdoc @param alignmentv2.0.14
Diffstat (limited to 'Acl')
-rw-r--r-- | Acl/Domain/AclCollectionCache.php | 2 | ||||
-rw-r--r-- | Acl/Domain/PermissionGrantingStrategy.php | 8 | ||||
-rw-r--r-- | Acl/Domain/UserSecurityIdentity.php | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/Acl/Domain/AclCollectionCache.php b/Acl/Domain/AclCollectionCache.php index c4f5fdd..12d7053 100644 --- a/Acl/Domain/AclCollectionCache.php +++ b/Acl/Domain/AclCollectionCache.php @@ -46,7 +46,7 @@ class AclCollectionCache * of required queries considerably. * * @param mixed $collection anything that can be passed to foreach() - * @param array $tokens an array of TokenInterface implementations + * @param array $tokens an array of TokenInterface implementations * @return void */ public function cache($collection, array $tokens = array()) diff --git a/Acl/Domain/PermissionGrantingStrategy.php b/Acl/Domain/PermissionGrantingStrategy.php index 5fb8460..1aab000 100644 --- a/Acl/Domain/PermissionGrantingStrategy.php +++ b/Acl/Domain/PermissionGrantingStrategy.php @@ -128,10 +128,10 @@ class PermissionGrantingStrategy implements PermissionGrantingStrategyInterface * access finally. * * @param AclInterface $acl - * @param array $aces An array of ACE to check against - * @param array $masks An array of permission masks - * @param array $sids An array of SecurityIdentityInterface implementations - * @param Boolean $administrativeMode True turns off audit logging + * @param array $aces An array of ACE to check against + * @param array $masks An array of permission masks + * @param array $sids An array of SecurityIdentityInterface implementations + * @param Boolean $administrativeMode True turns off audit logging * @return Boolean true, or false; either granting, or denying access respectively. */ private function hasSufficientPermissions(AclInterface $acl, array $aces, array $masks, array $sids, $administrativeMode) diff --git a/Acl/Domain/UserSecurityIdentity.php b/Acl/Domain/UserSecurityIdentity.php index df2be38..e9ff0a2 100644 --- a/Acl/Domain/UserSecurityIdentity.php +++ b/Acl/Domain/UserSecurityIdentity.php @@ -29,7 +29,7 @@ final class UserSecurityIdentity implements SecurityIdentityInterface * Constructor * * @param string $username the username representation - * @param string $class the user's fully qualified class name + * @param string $class the user's fully qualified class name */ public function __construct($username, $class) { |