summaryrefslogtreecommitdiffstats
path: root/Http/EntryPoint
diff options
context:
space:
mode:
authorRyan Weaver <ryan@thatsquality.com>2015-05-17 14:21:37 -0400
committerRyan Weaver <ryan@thatsquality.com>2015-09-20 19:24:20 -0400
commit85fb36d5cc968c432e0f0013d0eaab0c7c9f78c6 (patch)
treee8143ed9ec17c332736ce328425fb07361853ec9 /Http/EntryPoint
parentda308625d391f2c0d5df061fb2e13119a40c8729 (diff)
downloadsymfony-security-85fb36d5cc968c432e0f0013d0eaab0c7c9f78c6.zip
symfony-security-85fb36d5cc968c432e0f0013d0eaab0c7c9f78c6.tar.gz
symfony-security-85fb36d5cc968c432e0f0013d0eaab0c7c9f78c6.tar.bz2
Improving phpdoc on AuthenticationEntryPointInterface so people that implement this understand it
Diffstat (limited to 'Http/EntryPoint')
-rw-r--r--Http/EntryPoint/AuthenticationEntryPointInterface.php16
1 files changed, 13 insertions, 3 deletions
diff --git a/Http/EntryPoint/AuthenticationEntryPointInterface.php b/Http/EntryPoint/AuthenticationEntryPointInterface.php
index 0d7595d..2aa7a03 100644
--- a/Http/EntryPoint/AuthenticationEntryPointInterface.php
+++ b/Http/EntryPoint/AuthenticationEntryPointInterface.php
@@ -16,15 +16,25 @@ use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/**
- * AuthenticationEntryPointInterface is the interface used to start the
- * authentication scheme.
+ * Implement this interface for any classes that will be called to "start"
+ * the authentication process (see method for more details).
*
* @author Fabien Potencier <fabien@symfony.com>
*/
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 Response('/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