@@ -80,8 +80,8 @@ in the container.
8080 There are actually *many * more services in the container, and each service has
8181 a unique id in the container, like ``request_stack `` or ``router.default ``. For a full
8282 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 `.
8585
8686.. _service-container-creating-service :
8787
@@ -228,10 +228,11 @@ each time you ask for it.
228228
229229 Thanks to this configuration, you can automatically use any classes from the
230230 ``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.
232233
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 > `.
235236
236237.. _service-container_limiting-to-env :
237238
@@ -923,8 +924,8 @@ argument for *any* service defined in this file! You can bind arguments by name
923924(e.g. ``$adminEmail ``), by type (e.g. ``Psr\Log\LoggerInterface ``) or both
924925(e.g. ``Psr\Log\LoggerInterface $requestLogger ``).
925926
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 > `).
928929
929930Abstract Service Arguments
930931--------------------------
@@ -1167,9 +1168,9 @@ key. For example, the default Symfony configuration contains this:
11671168This can be used to quickly make many classes available as services and apply some
11681169default configuration. The ``id `` of each service is its fully-qualified class name.
11691170You 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 ``).
11731174
11741175You can also ``exclude `` certain paths. This is optional, but will slightly increase
11751176performance in the ``dev `` environment: excluded paths are not tracked and so modifying
0 commit comments