@@ -8,7 +8,7 @@ The service container can be compiled for various reasons. These reasons
88include checking for any potential issues such as circular references and
99making the container more efficient by resolving parameters and removing
1010unused services. Also, certain features - like using
11- :doc: `parent services </components/dependency_injection/parentservices >`
11+ :doc: `parent services </service_container/parent_services >`
1212- require the container to be compiled.
1313
1414It is compiled by running::
@@ -47,7 +47,7 @@ and can be registered with the container with::
4747The main work of the extension is done in the ``load `` method. In the ``load ``
4848method you can load configuration from one or more configuration files as
4949well as manipulate the container definitions using the methods shown in
50- :doc: `/components/dependency_injection /definitions `.
50+ :doc: `/service_container /definitions `.
5151
5252The ``load `` method is passed a fresh container to set up, which is then
5353merged afterwards into the container it is registered with. This allows
@@ -331,10 +331,10 @@ being compiled::
331331 }
332332
333333The container's parameters and definitions can be manipulated using the
334- methods described in the :doc: `/components/dependency_injection/ definitions `.
335- One common thing to do in a compiler pass is to search for all services
336- that have a certain tag in order to process them in some way or dynamically
337- plug each into some other service.
334+ methods described in the :doc: `/service_container/ definitions `. One common
335+ thing to do in a compiler pass is to search for all services that have a
336+ certain tag in order to process them in some way or dynamically plug each into
337+ some other service.
338338
339339Registering a Compiler Pass
340340---------------------------
@@ -519,4 +519,3 @@ have the cache will be considered stale.
519519
520520 In the full-stack framework the compilation and caching of the container
521521 is taken care of for you.
522-
0 commit comments