Skip to content

Commit

Permalink
fixed wrongly linked dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
gondo committed Aug 16, 2014
1 parent bb39863 commit 3a84396
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cookbook/security/voters_data_permission.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,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;
Expand Down Expand Up @@ -100,7 +99,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'
);
}
Expand Down

0 comments on commit 3a84396

Please sign in to comment.