@@ -80,8 +80,8 @@ in the container.
80
80
There are actually *many * more services in the container, and each service has
81
81
a unique id in the container, like ``request_stack `` or ``router.default ``. For a full
82
82
list, you can run ``php bin/console debug:container ``. But most of the time,
83
- you won't need to worry about this. See :ref: `services-wire- specific- service`.
84
- See :doc: `/service_container/debug `.
83
+ you won't need to worry about this. See :ref: `how to choose a specific service
84
+ <services-wire-specific-service>`. See :doc: `/service_container/debug `.
85
85
86
86
.. _service-container-creating-service :
87
87
@@ -228,10 +228,11 @@ each time you ask for it.
228
228
229
229
Thanks to this configuration, you can automatically use any classes from the
230
230
``src/ `` directory as a service, without needing to manually configure
231
- it. Later, you'll learn more about this in :ref: `service-psr4-loader `.
231
+ it. Later, you'll learn how to :ref: `import many services at once
232
+ <service-psr4-loader>` with resource.
232
233
233
- If you'd prefer to manually wire your service, that's totally possible: see
234
- :ref: `services-explicitly-configure-wire-services `.
234
+ If you'd prefer to manually wire your service, you can
235
+ :ref: `use explicit configuration < services-explicitly-configure-wire-services > `.
235
236
236
237
.. _service-container_limiting-to-env :
237
238
@@ -923,8 +924,8 @@ argument for *any* service defined in this file! You can bind arguments by name
923
924
(e.g. ``$adminEmail ``), by type (e.g. ``Psr\Log\LoggerInterface ``) or both
924
925
(e.g. ``Psr\Log\LoggerInterface $requestLogger ``).
925
926
926
- The ``bind `` config can also be applied to specific services or when loading many
927
- services at once (i.e. :ref: ` service-psr4-loader `).
927
+ The ``bind `` config can also be applied to specific services or when
928
+ :ref: ` loading many services at once < service-psr4-loader > `).
928
929
929
930
Abstract Service Arguments
930
931
--------------------------
@@ -1167,9 +1168,9 @@ key. For example, the default Symfony configuration contains this:
1167
1168
This can be used to quickly make many classes available as services and apply some
1168
1169
default configuration. The ``id `` of each service is its fully-qualified class name.
1169
1170
You can override any service that's imported by using its id (class name) below
1170
- (e.g. see :ref: `services-manually-wire-args `). If you override a service, none of
1171
- the options (e.g. ``public ``) are inherited from the import (but the overridden
1172
- service *does * still inherit from ``_defaults ``).
1171
+ (e.g. see :ref: `how to manually wire arguments < services-manually-wire-args > `).
1172
+ If you override a service, none of the options (e.g. ``public ``) are inherited
1173
+ from the import (but the overridden service *does * still inherit from ``_defaults ``).
1173
1174
1174
1175
You can also ``exclude `` certain paths. This is optional, but will slightly increase
1175
1176
performance in the ``dev `` environment: excluded paths are not tracked and so modifying
0 commit comments