<?phpnamespace App\Voter;use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;use Symfony\Component\Security\Core\Authorization\Voter\VoterInterface;class accessVoter implements VoterInterface{ public function vote(TokenInterface $token, $subject, array $attributes) { return self::ACCESS_ABSTAIN; }}