diff options
author | Jörn Lang <j.lang@11com7.de> | 2012-11-12 14:55:56 +0100 |
---|---|---|
committer | Jörn Lang <j.lang@11com7.de> | 2012-11-12 15:01:47 +0100 |
commit | 1c0e9255855cec9605df0f21ee4f7906b2b00276 (patch) | |
tree | e12594f45427cebc6b14cf11cdfab105e3752283 | |
parent | fb5fecef0fe1c28663e52c511fad2b76f8a1aa5c (diff) | |
download | symfony-security-1c0e9255855cec9605df0f21ee4f7906b2b00276.zip symfony-security-1c0e9255855cec9605df0f21ee4f7906b2b00276.tar.gz symfony-security-1c0e9255855cec9605df0f21ee4f7906b2b00276.tar.bz2 |
fixed comment. The parent ACL is not accessed in this method.
-rw-r--r-- | Acl/Domain/PermissionGrantingStrategy.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Acl/Domain/PermissionGrantingStrategy.php b/Acl/Domain/PermissionGrantingStrategy.php index 5fb8460..b145ef3 100644 --- a/Acl/Domain/PermissionGrantingStrategy.php +++ b/Acl/Domain/PermissionGrantingStrategy.php @@ -122,10 +122,8 @@ class PermissionGrantingStrategy implements PermissionGrantingStrategyInterface * permission/identity combination. * * This process is repeated until either a granting ACE is found, or no - * permission/identity combinations are left. In the latter case, we will - * call this method on the parent ACL if it exists, and isEntriesInheriting - * is true. Otherwise, we will either throw an NoAceFoundException, or deny - * access finally. + * permission/identity combinations are left. Finally, we will either throw + * an NoAceFoundException, or deny access. * * @param AclInterface $acl * @param array $aces An array of ACE to check against |