diff options
author | Florin Patan <florinpatan@gmail.com> | 2012-12-16 14:02:54 +0200 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2012-12-19 08:09:49 +0100 |
commit | 1849d1e5d8f925c671ba44ce461859c730298edb (patch) | |
tree | a493feeaccda5fc0f8c891b081957676c7a0dbe1 /Core/Authorization | |
parent | 2b733ec2d017d7f02f2c034950337e36015acf99 (diff) | |
download | symfony-security-1849d1e5d8f925c671ba44ce461859c730298edb.zip symfony-security-1849d1e5d8f925c671ba44ce461859c730298edb.tar.gz symfony-security-1849d1e5d8f925c671ba44ce461859c730298edb.tar.bz2 |
Fixed most of the docblocks/unused namespaces
Diffstat (limited to 'Core/Authorization')
-rw-r--r-- | Core/Authorization/AccessDecisionManager.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Core/Authorization/AccessDecisionManager.php b/Core/Authorization/AccessDecisionManager.php index a8bb5cf..6028c42 100644 --- a/Core/Authorization/AccessDecisionManager.php +++ b/Core/Authorization/AccessDecisionManager.php @@ -34,6 +34,8 @@ class AccessDecisionManager implements AccessDecisionManagerInterface * @param string $strategy The vote strategy * @param Boolean $allowIfAllAbstainDecisions Whether to grant access if all voters abstained or not * @param Boolean $allowIfEqualGrantedDeniedDecisions Whether to grant access if result are equals + * + * @throws \InvalidArgumentException */ public function __construct(array $voters, $strategy = 'affirmative', $allowIfAllAbstainDecisions = false, $allowIfEqualGrantedDeniedDecisions = true) { |