diff options
Diffstat (limited to 'Authentication/Provider')
3 files changed, 6 insertions, 3 deletions
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> */ |