class AuthenticatedVoter implements VoterInterface
AuthenticatedVoter votes if an attribute like ISAUTHENTICATEDFULLY, ISAUTHENTICATEDREMEMBERED, or ISAUTHENTICATEDANONYMOUSLY is present.
This list is most restrictive to least restrictive checking.
Constants
IS_AUTHENTICATED_FULLY | |
IS_AUTHENTICATED_REMEMBERED | |
IS_AUTHENTICATED_ANONYMOUSLY |
Methods
__construct(AuthenticationTrustResolverInterface $authenticationTrustResolver) Constructor. | ||
int | vote(TokenInterface $token, mixed $subject, array $attributes) Returns the vote for the given parameters. |
Details
__construct(AuthenticationTrustResolverInterface $authenticationTrustResolver)
Constructor.
int vote(TokenInterface $token, mixed $subject, array $attributes)
Returns the vote for the given parameters.
This method must return one of the following constants: ACCESSGRANTED, ACCESSDENIED, or ACCESS_ABSTAIN.
Please login to continue.