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/Component/Security/Http/Session/SessionAuthenticationStrategyInterface.php

11 lines
303 B
PHP
Raw Normal View History

<?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);
}