class TraceableVoter implements VoterInterface

Decorates voter classes to send result events.

Methods

__construct(VoterInterface $voter, EventDispatcherInterface $eventDispatcher)

No description

int
vote(TokenInterface $token, mixed $subject, array $attributes)

Returns the vote for the given parameters.

Details

__construct(VoterInterface $voter, EventDispatcherInterface $eventDispatcher)

Parameters

VoterInterface $voter
EventDispatcherInterface $eventDispatcher

int vote(TokenInterface $token, mixed $subject, array $attributes)

Returns the vote for the given parameters.

This method must return one of the following constants: ACCESS_GRANTED, ACCESS_DENIED, or ACCESS_ABSTAIN.

Parameters

TokenInterface $token A TokenInterface instance
mixed $subject The subject to secure
array $attributes An array of attributes associated with the method being invoked

Return Value

int either ACCESS_GRANTED, ACCESS_ABSTAIN, or ACCESS_DENIED

VoterInterface getDecoratedVoter()

Return Value

VoterInterface