diff options
author | Graham Campbell <graham@mineuk.com> | 2014-12-05 20:11:30 +0000 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-12-07 19:23:39 +0100 |
commit | 42c01236ad91d79608e903005583d4a2d0d3cd7a (patch) | |
tree | 8cb18a553a9da7cc284e5c173295d8c1448ae34b /Core | |
parent | 7b4c83290a3d948e2ac7e5fc41073db13c32795c (diff) | |
download | symfony-security-42c01236ad91d79608e903005583d4a2d0d3cd7a.zip symfony-security-42c01236ad91d79608e903005583d4a2d0d3cd7a.tar.gz symfony-security-42c01236ad91d79608e903005583d4a2d0d3cd7a.tar.bz2 |
[2.6] CS Fixes And Removed An Unused Import
Diffstat (limited to 'Core')
-rw-r--r-- | Core/Authorization/Voter/AbstractVoter.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Core/Authorization/Voter/AbstractVoter.php b/Core/Authorization/Voter/AbstractVoter.php index 5d51090..43ca558 100644 --- a/Core/Authorization/Voter/AbstractVoter.php +++ b/Core/Authorization/Voter/AbstractVoter.php @@ -54,7 +54,7 @@ abstract class AbstractVoter implements VoterInterface * @param object $object The object to secure * @param array $attributes An array of attributes associated with the method being invoked * - * @return int either ACCESS_GRANTED, ACCESS_ABSTAIN, or ACCESS_DENIED + * @return int either ACCESS_GRANTED, ACCESS_ABSTAIN, or ACCESS_DENIED */ public function vote(TokenInterface $token, $object, array $attributes) { @@ -85,14 +85,14 @@ abstract class AbstractVoter implements VoterInterface /** * Return an array of supported classes. This will be called by supportsClass * - * @return array an array of supported classes, i.e. array('Acme\DemoBundle\Model\Product') + * @return array an array of supported classes, i.e. array('Acme\DemoBundle\Model\Product') */ abstract protected function getSupportedClasses(); /** * Return an array of supported attributes. This will be called by supportsAttribute * - * @return array an array of supported attributes, i.e. array('CREATE', 'READ') + * @return array an array of supported attributes, i.e. array('CREATE', 'READ') */ abstract protected function getSupportedAttributes(); |