We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dc52ca commit cdd6cd2Copy full SHA for cdd6cd2
event_dispatcher.rst
@@ -322,12 +322,12 @@ its name:
322
323
$ php bin/console debug:event-dispatcher kernel.exception
324
325
-or can get everything matching "kernel" (i.e. ``kernel.exception``, ``kernel.response`` etc.):
+or can get everything which partial matches the event name:
326
327
.. code-block:: terminal
328
329
- $ php bin/console debug:event-dispatcher kernel
330
- $ php bin/console debug:event-dispatcher App
+ $ php bin/console debug:event-dispatcher kernel // matches "kernel.exception", "kernel.response" etc.
+ $ php bin/console debug:event-dispatcher Security // matches "Symfony\Component\Security\Http\Event\CheckPassportEvent"
331
332
.. versionadded:: 5.3
333
0 commit comments