Back to Designpatternsphp

`Service Locator`__

More/ServiceLocator/README.rst

latest1.6 KB
Original Source

Service Locator__

THIS IS CONSIDERED TO BE AN ANTI-PATTERN!

Service Locator is considered for some people an anti-pattern. It violates the Dependency Inversion principle. Service Locator hides class' dependencies instead of exposing them as you would do using the Dependency Injection. In case of changes of those dependencies you risk to break the functionality of classes which are using them, making your system difficult to maintain.

Purpose

To implement a loosely coupled architecture in order to get better testable, maintainable and extendable code. DI pattern and Service Locator pattern are an implementation of the Inverse of Control pattern.

Usage

With ServiceLocator you can register a service for a given interface. By using the interface you can retrieve the service and use it in the classes of the application without knowing its implementation. You can configure and inject the Service Locator object on bootstrap.

UML Diagram

.. image:: uml/uml.png :alt: Alt ServiceLocator UML Diagram :align: center

Code

You can also find this code on GitHub_

Service.php

.. literalinclude:: Service.php :language: php :linenos:

ServiceLocator.php

.. literalinclude:: ServiceLocator.php :language: php :linenos:

LogService.php

.. literalinclude:: LogService.php :language: php :linenos:

Test

Tests/ServiceLocatorTest.php

.. literalinclude:: Tests/ServiceLocatorTest.php :language: php :linenos:

.. _GitHub: https://github.com/DesignPatternsPHP/DesignPatternsPHP/tree/main/More/ServiceLocator .. __: http://en.wikipedia.org/wiki/Service_locator_pattern