diff options
-rw-r--r-- | Core/Authorization/Voter/AbstractVoter.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Core/Authorization/Voter/AbstractVoter.php b/Core/Authorization/Voter/AbstractVoter.php index 61c928e..5d51090 100644 --- a/Core/Authorization/Voter/AbstractVoter.php +++ b/Core/Authorization/Voter/AbstractVoter.php @@ -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. ['\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. ['CREATE', 'READ'] + * @return array an array of supported attributes, i.e. array('CREATE', 'READ') */ abstract protected function getSupportedAttributes(); |