summaryrefslogtreecommitdiffstats
path: root/Http/EntryPoint/AuthenticationEntryPointInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'Http/EntryPoint/AuthenticationEntryPointInterface.php')
-rw-r--r--Http/EntryPoint/AuthenticationEntryPointInterface.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Http/EntryPoint/AuthenticationEntryPointInterface.php b/Http/EntryPoint/AuthenticationEntryPointInterface.php
index df777f6..9bade0c 100644
--- a/Http/EntryPoint/AuthenticationEntryPointInterface.php
+++ b/Http/EntryPoint/AuthenticationEntryPointInterface.php
@@ -32,7 +32,7 @@ interface AuthenticationEntryPointInterface
*
* Examples:
* A) For a form login, you might redirect to the login page
- * return new Response('/login');
+ * return new RedirectResponse('/login');
* B) For an API token authentication system, you return a 401 response
* return new Response('Auth header required', 401);
*