File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,33 @@ To see a list of all of the available types that can be used for autowiring, run
21
21
22
22
$ php bin/console debug:autowiring
23
23
24
+ How to Debug Service Tags & List Tagged Services
25
+ ------------------------------------
26
+ You can find out what services are tagged with a specific tag using the following command:
27
+
28
+ .. code-block :: terminal
29
+
30
+ $ php bin/console debug:container --tag=kernel.event_listener
31
+
32
+ Partial search is also available:
33
+
34
+ .. code-block :: terminal
35
+
36
+ $ php bin/console debug:container --tag=kernel
37
+
38
+ Select one of the following tags to display its information:
39
+ [0] kernel.event_listener
40
+ [1] kernel.event_subscriber
41
+ [2] kernel.reset
42
+ [3] kernel.cache_warmer
43
+ [4] kernel.locale_aware
44
+ [5] kernel.fragment_renderer
45
+ [6] kernel.cache_clearer
46
+
47
+ .. versionadded :: 6.2
48
+
49
+ The partial search was introduced in Symfony 6.2.
50
+
24
51
Detailed Info about a Single Service
25
52
------------------------------------
26
53
You can’t perform that action at this time.
0 commit comments