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 parent164db85 commitf723ea5Copy full SHA for f723ea5
cookbook/security/custom_provider.rst
@@ -9,7 +9,8 @@ When a user submits a username and password, the authentication layer asks
9
the configured user provider to return a user object for a given username.
10
Symfony then checks whether the password of this user is correct and generates
11
a security token so the user stays authenticated during the current session.
12
-Out of the box, Symfony has an "in_memory" and an "entity" user provider.
+Out of the box, Symfony has four user providers: ``in_memory``, ``entity``,
13
+``ldap`` and ``chain``.
14
In this entry you'll see how you can create your own user provider, which
15
could be useful if your users are accessed via a custom database, a file,
16
or - as shown in this example - a web service.