summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Schultze <webmaster@tubo-world.de>2015-12-15 02:31:17 +0100
committerTobias Schultze <webmaster@tubo-world.de>2015-12-15 02:31:17 +0100
commit609da32820adbe22c5c9eb6b769e0e5ccf40eaa0 (patch)
treed612a09a63cced41b6bf55f54fa17a448f0b794c
parent8ed6a55aa3be7707615e76e7621e70857e3bcaab (diff)
parentc6e2323b707734f39941e57bf39df8ab85ccf6c3 (diff)
downloadsymfony-security-609da32820adbe22c5c9eb6b769e0e5ccf40eaa0.zip
symfony-security-609da32820adbe22c5c9eb6b769e0e5ccf40eaa0.tar.gz
symfony-security-609da32820adbe22c5c9eb6b769e0e5ccf40eaa0.tar.bz2
Merge branch '2.3' into 2.7
-rw-r--r--Http/EntryPoint/AuthenticationEntryPointInterface.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/Http/EntryPoint/AuthenticationEntryPointInterface.php b/Http/EntryPoint/AuthenticationEntryPointInterface.php
index 0d7595d..c8e43e5 100644
--- a/Http/EntryPoint/AuthenticationEntryPointInterface.php
+++ b/Http/EntryPoint/AuthenticationEntryPointInterface.php
@@ -24,7 +24,17 @@ use Symfony\Component\HttpFoundation\Response;
interface AuthenticationEntryPointInterface
{
/**
- * Starts the authentication scheme.
+ * Returns a response that directs the user to authenticate.
+ *
+ * This is called when an anonymous request accesses a resource that
+ * requires authentication. The job of this method is to return some
+ * response that "helps" the user start into the authentication process.
+ *
+ * Examples:
+ * A) For a form login, you might redirect to the login page
+ * return new RedirectResponse('/login');
+ * B) For an API token authentication system, you return a 401 response
+ * return new Response('Auth header required', 401);
*
* @param Request $request The request that resulted in an AuthenticationException
* @param AuthenticationException $authException The exception that started the authentication process