1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Symfony\Component\Security\Acl\Model;
- use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
- interface SecurityIdentityRetrievalStrategyInterface
- {
-
- public function getSecurityIdentities(TokenInterface $token);
- }
|