@@ -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
@@ -927,8 +928,8 @@ argument for *any* service defined in this file! You can bind arguments by name
927
928
(e.g. ``$adminEmail ``), by type (e.g. ``Psr\Log\LoggerInterface ``) or both
928
929
(e.g. ``Psr\Log\LoggerInterface $requestLogger ``).
929
930
930
- The ``bind `` config can also be applied to specific services or when loading many
931
- services at once (i.e. :ref: ` service-psr4-loader `).
931
+ The ``bind `` config can also be applied to specific services or when
932
+ :ref: ` loading many services at once < service-psr4-loader > `).
932
933
933
934
Abstract Service Arguments
934
935
--------------------------
@@ -1176,9 +1177,9 @@ key. For example, the default Symfony configuration contains this:
1176
1177
This can be used to quickly make many classes available as services and apply some
1177
1178
default configuration. The ``id `` of each service is its fully-qualified class name.
1178
1179
You can override any service that's imported by using its id (class name) below
1179
- (e.g. see :ref: `services-manually-wire-args `). If you override a service, none of
1180
- the options (e.g. ``public ``) are inherited from the import (but the overridden
1181
- service *does * still inherit from ``_defaults ``).
1180
+ (e.g. see :ref: `how to manually wire arguments < services-manually-wire-args > `).
1181
+ If you override a service, none of the options (e.g. ``public ``) are inherited
1182
+ from the import (but the overridden service *does * still inherit from ``_defaults ``).
1182
1183
1183
1184
You can also ``exclude `` certain paths. This is optional, but will slightly increase
1184
1185
performance in the ``dev `` environment: excluded paths are not tracked and so modifying
0 commit comments