Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions event_dispatcher.rst
Original file line number Diff line number Diff line change
Expand Up @@ -814,3 +814,21 @@ could listen to the ``mailer.post_send`` event and change the method's return va

That's it! Your subscriber should be called automatically (or read more about
:ref:`event subscriber configuration <ref-event-subscriber-configuration>`).


Learn More
----------

Security
~~~~~~~~

- :ref:`Security Events <security-security-events>`
- :ref:`Authentication Events <security-authentication-events>`
- :ref:`Other Events <security-other-events>`

Other
~~~~~

- :doc:`/reference/events`
- :doc:`/components/event_dispatcher`
- :ref:`The Request-Response Lifecycle <the-workflow-of-a-request>`
6 changes: 6 additions & 0 deletions security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2590,6 +2590,8 @@ implement :class:`Symfony\\Component\\Security\\Core\\User\\EquatableInterface`.
Then, your ``isEqualTo()`` method will be called when comparing users instead
of the core logic.

.. _security-security-events:

Security Events
---------------

Expand Down Expand Up @@ -2657,6 +2659,8 @@ for these events.
]);
};

.. _security-authentication-events:

Authentication Events
~~~~~~~~~~~~~~~~~~~~~

Expand Down Expand Up @@ -2691,6 +2695,8 @@ Authentication Events
authentication. Listeners to this event can modify the error response
sent back to the user.

.. _security-other-events:

Other Events
~~~~~~~~~~~~

Expand Down
Loading