@@ -106,9 +106,10 @@ the security layer. This can be done easily through the service container.
106106:method: `Symfony\\ Component\\ Security\\ Core\\ Authorization\\ Voter\\ VoterInterface::supportsAttribute `
107107 and:method: `Symfony\\ Component\\ Security\\ Core\\ Authorization\\ Voter\\ VoterInterface::supportsClass `
108108 are not being called internally by the framework. Once you have registered your
109- voter the ``vote() `` method will always be called, not depending on your
110- restrictions. Therefore you need to call those methods in your implementation
111- of the ``vote() `` method.
109+ voter the ``vote() `` method will always be called, regardless of whether
110+ or not these two methods return true. Therefore you need to call those
111+ methods in your implementation of the ``vote() `` method and return ``ACCESS_ABSTAIN ``
112+ if your voter does not support the class or attribute.
112113
113114Declaring the Voter as a Service
114115--------------------------------