Skip to content
This repository has been archived by the owner on May 24, 2018. It is now read-only.

Fix markup in "Introducing Services and the ServiceManager" #1543

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/in-depth-guide/services-and-servicemanager.rst
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ always inject this using Dependency Injection as we have learned above. Let's im

Now this looks complicated! Let's start to look at the ``$realServiceLocator``. When using a Factory-Class that will be
called from the ``ControllerManager`` it will actually inject **itself** as the ``$serviceLocator``. However, we need the real
``ServiceManager`` to get to our Service-Classes. This is why we call the function ``getServiceLocator()` who will give us
``ServiceManager`` to get to our Service-Classes. This is why we call the function ``getServiceLocator()`` who will give us
the real ``ServiceManager``.

After we have the ``$realServiceLocator`` set up we try to get a Service called ``Blog\Service\PostServiceInterface``.
Expand Down