From 0d16851ec22c59a2ee44636a1384b10189c21a06 Mon Sep 17 00:00:00 2001 From: gondo Date: Sun, 17 Aug 2014 00:52:36 +0200 Subject: [PATCH] fixed wrongly linked dependency --- cookbook/security/voters_data_permission.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cookbook/security/voters_data_permission.rst b/cookbook/security/voters_data_permission.rst index efd6c7c1064..09978def0ab 100644 --- a/cookbook/security/voters_data_permission.rst +++ b/cookbook/security/voters_data_permission.rst @@ -59,7 +59,6 @@ edit a particular object. Here's an example implementation:: // src/Acme/DemoBundle/Security/Authorization/Voter/PostVoter.php namespace Acme\DemoBundle\Security\Authorization\Voter; - use Symfony\Component\Security\Core\Exception\InvalidArgumentException; use Symfony\Component\Security\Core\Authorization\Voter\VoterInterface; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\User\UserInterface; @@ -98,7 +97,7 @@ edit a particular object. Here's an example implementation:: // this isn't a requirement, it's just one easy way for you to // design your voter if(1 !== count($attributes)) { - throw new InvalidArgumentException( + throw new \InvalidArgumentException( 'Only one attribute is allowed for VIEW or EDIT' ); }