Skip to content

Commit d78e3bb

Browse files
committed
-
1 parent 5a96552 commit d78e3bb

File tree

4 files changed

+5
-13
lines changed

4 files changed

+5
-13
lines changed

security.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,7 @@ Frequently Asked Questions
14261426
**Can I have Multiple Firewalls?**
14271427
Yes! But it's usually not necessary. Each firewall is like a separate security
14281428
system. And so, unless you have *very* different authentication needs, one
1429-
firewall usually works well. With :doc:`Guard authentication </security/guard_authentication>`,
1429+
firewall usually works well. With the :doc:`authenticator-based security </security/authenticator_manager>`,
14301430
you can create various, diverse ways of allowing authentication (e.g. form login,
14311431
API key authentication and LDAP) all under the same firewall.
14321432

security/authenticator_manager.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -266,14 +266,6 @@ The authenticator-based system dropped support for these providers and
266266
introduced a new authenticator interface as a base for custom
267267
authentication methods.
268268

269-
.. tip::
270-
271-
:doc:`Guard authenticators </security/guard_authentication>` are still
272-
supported in the authenticator-based system. It is however recommended
273-
to also update these when you're refactoring your application to the
274-
new system. The new authenticator interface has many similarities with the
275-
guard authenticator interface, making the rewrite easier.
276-
277269
Authenticators should implement the
278270
:class:`Symfony\\Component\\Security\\Http\\Authenticator\\AuthenticatorInterface`.
279271
You can also extend

security/form_login_setup.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ and your generated code may be slightly different:
4545
Support for login form authentication was added to ``make:auth`` in MakerBundle 1.8.
4646

4747
This generates the following: 1) login/logout routes & controller, 2) a template that
48-
renders the login form, 3) a :doc:`Guard authenticator </security/guard_authentication>`
48+
renders the login form, 3) an :doc:`authenticator </security/authenticator_manager>`
4949
class that processes the login submit and 4) updates the main security config file.
5050

5151
**Step 1.** The ``/login``/``/logout`` routes & controller::
@@ -405,9 +405,9 @@ you have:
405405
.. image:: /_images/security/symfony_loggedin_wdt.png
406406
:align: center
407407

408-
The Guard authentication system is powerful, and you can customize your authenticator
408+
The authentication system is powerful, and you can customize your authenticator
409409
class to do whatever you need. To learn more about what the individual methods do,
410-
see :doc:`/security/guard_authentication`.
410+
see :doc:`/security/authenticator_manager`.
411411

412412
Controlling Error Messages
413413
--------------------------

security/password_migration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ After this, you're done and passwords are always hashed as secure as possible!
141141
Provide the Password when using Guard
142142
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
143143

144-
When you're using a custom :doc:`guard authenticator </security/guard_authentication>`,
144+
When you're using a custom :doc:`authenticator </security/authenticator_manager>`,
145145
you need to implement :class:`Symfony\\Component\\Security\\Guard\\PasswordAuthenticatedInterface`.
146146
This interface defines a ``getPassword()`` method that returns the password
147147
for this login request. This password is used in the migration process::

0 commit comments

Comments
 (0)