1 2 3 4 5 6 7 8 9 10 11
<?php namespace Symfony\Component\Security\Http\Session; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\HttpFoundation\Request; interface SessionAuthenticationStrategyInterface { function onAuthentication(Request $request, TokenInterface $token); }