summaryrefslogtreecommitdiffstats
path: root/Http/Session/SessionAuthenticationStrategyInterface.php
blob: c2d95c346319b6f3adb8afe3d935db4dba92114a (plain)
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);
}