diff options
Diffstat (limited to 'Authentication/EntryPoint/AuthenticationEntryPointInterface.php')
-rw-r--r-- | Authentication/EntryPoint/AuthenticationEntryPointInterface.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Authentication/EntryPoint/AuthenticationEntryPointInterface.php b/Authentication/EntryPoint/AuthenticationEntryPointInterface.php new file mode 100644 index 0000000..dc825c1 --- /dev/null +++ b/Authentication/EntryPoint/AuthenticationEntryPointInterface.php @@ -0,0 +1,31 @@ +<?php + +namespace Symfony\Component\Security\Authentication\EntryPoint; + +use Symfony\Component\Security\Exception\AuthenticationException; +use Symfony\Component\HttpFoundation\Request; + +/* + * This file is part of the Symfony framework. + * + * (c) Fabien Potencier <fabien.potencier@symfony-project.com> + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * AuthenticationEntryPointInterface is the interface used to start the authentication scheme. + * + * @author Fabien Potencier <fabien.potencier@symfony-project.com> + */ +interface AuthenticationEntryPointInterface +{ + /** + * Starts the authentication scheme. + * + * @param object $request The request that resulted in an AuthenticationException + * @param AuthenticationException $authException The exception that started the authentication process + */ + function start(Request $request, AuthenticationException $authException = null); +} |