Files
php-the-right-way/_posts/06-01-01-Dependency-Injection.md
Josh Lockhart 402f3f4030 Update DI links
2018-06-19 14:09:17 -04:00

616 B

title, anchor
title anchor
Dependency Injection dependency_injection

Dependency Injection

From Wikipedia:

Dependency injection is a software design pattern that allows the removal of hard-coded dependencies and makes it possible to change them, whether at run-time or compile-time.

This quote makes the concept sound much more complicated than it actually is. Dependency Injection is providing a component with its dependencies either through constructor injection, method calls or the setting of properties. It is that simple.