summaryrefslogtreecommitdiffstats
path: root/Http/EntryPoint/AuthenticationEntryPointInterface.php
diff options
context:
space:
mode:
authorTobias Schultze <webmaster@tubo-world.de>2015-12-15 02:39:37 +0100
committerTobias Schultze <webmaster@tubo-world.de>2015-12-15 02:39:37 +0100
commitcb6ed1127a7d17612e1deb4996f3115a94012fe5 (patch)
tree917d4c36badf65d37b944d1a8f2db94d7cc6d56f /Http/EntryPoint/AuthenticationEntryPointInterface.php
parent898c93e3d4c320e06860fd0a77330528c0fd84bb (diff)
parent609da32820adbe22c5c9eb6b769e0e5ccf40eaa0 (diff)
downloadsymfony-security-cb6ed1127a7d17612e1deb4996f3115a94012fe5.zip
symfony-security-cb6ed1127a7d17612e1deb4996f3115a94012fe5.tar.gz
symfony-security-cb6ed1127a7d17612e1deb4996f3115a94012fe5.tar.bz2
Merge branch '2.7' into 2.8
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);
*