Dependency injection is a design pattern commonly used in object-oriented software architectures in order to support Inversion of Control. At a very high level it refers to the practice of passing existing objects (or services) into a class when it is instantiated, or via a setter method, rather than creating them inside the class itself. Doing so allows some other logic external to your code to determine how to initialize and configure the service object, and keeps your code more flexible.
In the case of Drupal this allows your code to state a need, such as, “I need to access the database. Please provide me with a database service,” without knowing anything about the specifics. Drupal then determines, based on other factors, what database type (MySQL, SQLite, etc.) is being used, and how to connect to it, how to authenticate, and any other requirements on your behalf.
Currently in Drupal, dependency injection is the preferred method for accessing and using services and should be used whenever possible. Rather than calling out to the global services container, services are instead passed as arguments to a constructor or injected via setter methods. This allows for a loose coupling of components, which makes things easier to test, and easier to replace with alternative implementations.
Example tasks
- Use dependency injection to make use of services in your module’s code
- Write custom code that is easier to test and refactor
Confidence
While relatively new to Drupal, dependency injection is a tried and true technique commonly used in object-oriented PHP applications. The implementation in Drupal is unlikely to change significantly, and therefore you should feel comfortable learning it just about any context and then applying it to Drupal.
Drupalize.Me resources
External resources
-
Services and dependency injection (Drupal.org)
- Examples of how to use dependency injection in a Drupal context.
-
Services and Dependency Injection Container (api.drupal.org)
- A more technical look at how Drupal implements dependency injection and services
-
Dependency Injection (phptherightway.com)
- A good overview of dependency injection and related concepts with a focus on PHP applications. Contains a well-curated list of links to other articles that discuss the various concepts in detail
-
Late Static Binding (php.net)
- Drupal makes use of a PHP feature known as late static binding to handle injection of services in many cases. See
\Drupal\system\Plugin\Block\SystemBrandingBlock::create()
for an example. This isn’t necessarily required knowledge, but if you’re curious how that code works you can read up on late static binding.
- Drupal makes use of a PHP feature known as late static binding to handle injection of services in many cases. See