We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent1257b03 commit39be566Copy full SHA for 39be566
components/security/authentication.rst
@@ -47,7 +47,8 @@ The listener should then store the authenticated token in the security context::
47
$unauthenticatedToken = new UsernamePasswordToken(
48
$username,
49
$password,
50
- $this->providerKey);
+ $this->providerKey
51
+ );
52
53
$authenticatedToken = $this
54
->authenticationManager
@@ -65,7 +66,8 @@ The listener should then store the authenticated token in the security context::
65
66
The authentication manager
67
--------------------------
68
-The default authentication manager is an instance of:class:`Symfony\\Component\\Security\\Core\\Authentication\\AuthenticationProviderManager`::
69
+The default authentication manager is an instance of
70
+:class:`Symfony\\Component\\Security\\Core\\Authentication\\AuthenticationProviderManager`::
71
72
use Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager;
73