class ExpressionVoter implements VoterInterface
ExpressionVoter votes based on the evaluation of an expression.
Methods
__construct(ExpressionLanguage $expressionLanguage, AuthenticationTrustResolverInterface $trustResolver, RoleHierarchyInterface $roleHierarchy = null) Constructor. | ||
addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider) | ||
int | vote(TokenInterface $token, mixed $subject, array $attributes) Returns the vote for the given parameters. |
Details
__construct(ExpressionLanguage $expressionLanguage, AuthenticationTrustResolverInterface $trustResolver, RoleHierarchyInterface $roleHierarchy = null)
Constructor.
addExpressionLanguageProvider(ExpressionFunctionProviderInterface $provider)
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.