This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/SecurityBundle/Security/Session/SessionAuthenticationStrategyInterface.php

11 lines
305 B
PHP
Raw Normal View History

<?php
namespace Symfony\Bundle\SecurityBundle\Security\Session;
use Symfony\Component\Security\Authentication\Token\TokenInterface;
use Symfony\Component\HttpFoundation\Request;
interface SessionAuthenticationStrategyInterface
{
function onAuthentication(Request $request, TokenInterface $token);
}