summaryrefslogtreecommitdiffstats
path: root/Authentication
diff options
context:
space:
mode:
Diffstat (limited to 'Authentication')
-rw-r--r--Authentication/EntryPoint/AuthenticationEntryPointInterface.php3
-rw-r--r--Authentication/Provider/AuthenticationProviderInterface.php3
-rw-r--r--Authentication/Provider/DaoAuthenticationProvider.php3
-rw-r--r--Authentication/Provider/PreAuthenticatedAuthenticationProvider.php3
4 files changed, 8 insertions, 4 deletions
diff --git a/Authentication/EntryPoint/AuthenticationEntryPointInterface.php b/Authentication/EntryPoint/AuthenticationEntryPointInterface.php
index dc825c1..e58f219 100644
--- a/Authentication/EntryPoint/AuthenticationEntryPointInterface.php
+++ b/Authentication/EntryPoint/AuthenticationEntryPointInterface.php
@@ -15,7 +15,8 @@ use Symfony\Component\HttpFoundation\Request;
*/
/**
- * AuthenticationEntryPointInterface is the interface used to start the authentication scheme.
+ * AuthenticationEntryPointInterface is the interface used to start the
+ * authentication scheme.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
diff --git a/Authentication/Provider/AuthenticationProviderInterface.php b/Authentication/Provider/AuthenticationProviderInterface.php
index 61a428b..bfa8921 100644
--- a/Authentication/Provider/AuthenticationProviderInterface.php
+++ b/Authentication/Provider/AuthenticationProviderInterface.php
@@ -15,7 +15,8 @@ use Symfony\Component\Security\Authentication\AuthenticationManagerInterface;
*/
/**
- * AuthenticationProviderInterface is the interface for for all authentication providers.
+ * AuthenticationProviderInterface is the interface for for all authentication
+ * providers.
*
* Concrete implementations processes specific Token instances.
*
diff --git a/Authentication/Provider/DaoAuthenticationProvider.php b/Authentication/Provider/DaoAuthenticationProvider.php
index 3035725..b5ae27c 100644
--- a/Authentication/Provider/DaoAuthenticationProvider.php
+++ b/Authentication/Provider/DaoAuthenticationProvider.php
@@ -22,7 +22,8 @@ use Symfony\Component\Security\Authentication\Token\UsernamePasswordToken;
*/
/**
- * DaoAuthenticationProvider uses a UserProviderInterface to retrieve the user for a UsernamePasswordToken.
+ * DaoAuthenticationProvider uses a UserProviderInterface to retrieve the user
+ * for a UsernamePasswordToken.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
diff --git a/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php b/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php
index dc75113..1494dcf 100644
--- a/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php
+++ b/Authentication/Provider/PreAuthenticatedAuthenticationProvider.php
@@ -22,7 +22,8 @@ use Symfony\Component\Security\Authentication\Token\TokenInterface;
*
* This authentication provider will not perform any checks on authentication
* requests, as they should already be pre-authenticated. However, the
- * UserProviderInterface implementation may still throw a UsernameNotFoundException, for example.
+ * UserProviderInterface implementation may still throw a
+ * UsernameNotFoundException, for example.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/