src/Voter/accessVoter.php line 8

Open in your IDE?
  1. <?php
  2. namespace App\Voter;
  3. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  4. use Symfony\Component\Security\Core\Authorization\Voter\VoterInterface;
  5. class accessVoter implements VoterInterface
  6. {
  7.     public function vote(TokenInterface $token$subject, array $attributes)
  8.     {
  9.         return self::ACCESS_ABSTAIN;
  10.     }
  11. }