


Detailed introduction to dependency injection and IoC in Laravel (with examples)
This article brings you a detailed introduction to dependency injection and IoC in Laravel (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
As developers, we are always trying to find new ways to write well-designed and robust code by using design patterns and trying new robust frameworks. In this article, we'll explore the Dependency Injection design pattern with Laravel's IoC components and see how it can improve our designs.
Dependency Injection
The term dependency injection is a term proposed by Martin Fowler, which is the act of injecting components into an application. As Ward Cunningham said:
Dependency injection is a key element in agile architecture.
Let's look at an example:
class UserProvider{ protected $connection; public function __construct(){ $this->connection = new Connection; } public function retrieveByCredentials( array $credentials ){ $user = $this->connection ->where( 'email', $credentials['email']) ->where( 'password', $credentials['password']) ->first(); return $user; } }
If you want to test or maintain this class, you must access the instance of the database to perform some queries. To avoid having to do this, you can decouple this class from other classes, you have one of three options to inject the Connection
class without using it directly.
When injecting components into a class, you can use one of the following three options:
Constructor method injection
class UserProvider{ protected $connection; public function __construct( Connection $con ){ $this->connection = $con; } ...
Setter method injection
Similarly, we also Dependencies can be injected using the Setter method:
class UserProvider{ protected $connection; public function __construct(){ ... } public function setConnection( Connection $con ){ $this->connection = $con; } ...
Interface injection
interface ConnectionInjector{ public function injectConnection( Connection $con ); } class UserProvider implements ConnectionInjector{ protected $connection; public function __construct(){ ... } public function injectConnection( Connection $con ){ $this->connection = $con; } }
When a class implements our interface, we define the injectConnection
method to resolve dependencies.
Advantages
Now when testing our classes we can mock dependent classes and pass them as parameters. Each class must focus on a specific task and should not be concerned with resolving their dependencies. This way, you'll have a more focused and maintainable application.
If you want to learn more about DI, Alejandro Gervassio has covered it extensively and expertly in this series of articles, so be sure to read them. So, what is IoC? IoC (Inversion of Control) does not require the use of dependency injection, but it can help you manage dependencies effectively.
Inversion of Control
Ioc is a simple component that makes it easier to resolve dependencies. You can describe the object as a container, and every time a class is resolved, dependencies are automatically injected.
Laravel Ioc
Laravel Ioc is a little special in the way it resolves dependencies when you request an object:
We use A simple example will improve it in this article. The SimpleAuth
class depends on FileSessionStorage
, so our code might look like this:
class FileSessionStorage{ public function __construct(){ session_start(); } public function get( $key ){ return $_SESSION[$key]; } public function set( $key, $value ){ $_SESSION[$key] = $value; } } class SimpleAuth{ protected $session; public function __construct(){ $this->session = new FileSessionStorage; } } //创建一个 SimpleAuth $auth = new SimpleAuth();
This is a classic approach, let's start with using the constructor Function injection begins.
class SimpleAuth{ protected $session; public function __construct( FileSessionStorage $session ){ $this->session = $session; } }
Now we create an object:
$auth = new SimpleAuth( new FileSessionStorage() );
Now I want to use Laravel Ioc to manage all this.
Because the Application
class inherits from the Container
class, you can access the container through the App
facade.
App::bind( 'FileSessionStorage', function(){ return new FileSessionStorage; });
bind
The first parameter of the method is the unique ID to be bound to the container, and the second parameter is a callback function that is executed whenever the FileSessionStorage
class is executed. , we can also pass a string representing the class name as shown below.
Note: If you look at the Laravel package, you will see that bindings are sometimes grouped, such as ( view
, view.finder
...).
Assuming we convert the session store to Mysql storage, our class should look like:
class MysqlSessionStorage{ public function __construct(){ //... } public function get($key){ // do something } public function set( $key, $value ){ // do something } }
Now that we have changed the dependencies, we also need to change the SimpleAuth
construct function and bind the new object to the container!
High-level modules should not depend on low-level modules, both should depend on abstract objects.
Abstraction should not depend on details, details should depend on abstraction.Robert C. Martin
Our SimpleAuth
class should not care about how our storage is done, instead it should focus more on consuming the service.
Therefore, we can abstractly implement our storage:
interface SessionStorage{ public function get( $key ); public function set( $key, $value ); }
so that we can implement and request an instance of the SessionStorage
interface:
class FileSessionStorage implements SessionStorage{ public function __construct(){ //... } public function get( $key ){ //... } public function set( $key, $value ){ //... } } class MysqlSessionStorage implements SessionStorage{ public function __construct(){ //... } public function get( $key ){ //... } public function set( $key, $value ){ //... } } class SimpleAuth{ protected $session; public function __construct( SessionStorage $session ){ $this->session = $session; } }
If we Use App::make('SimpleAuth')
to resolve the SimpleAuth
class through the container, the container will throw BindingResolutionException
trying to resolve the class from the binding After that, go back to the reflection method and resolve all dependencies.
Uncaught exception 'Illuminate\Container\BindingResolutionException' with message 'Target [SessionStorage] is not instantiable.'
The container is trying to instantiate the interface. We can make a specific binding for this interface.
App:bind( 'SessionStorage', 'MysqlSessionStorage' );
Now every time we try to resolve this interface from the container, we will get a MysqlSessionStorage
instance. If we want to switch our storage service, we just change this binding.
Note: If you want to check whether a class has been bound in the container, you can use App::bound('ClassName')
, or you can use App::bindIf('ClassName')
To register a binding that has not yet been registered.
Laravel Ioc also provides App::singleton('ClassName', 'resolver')
to handle singleton binding.
You can also use App::instance('ClassName', 'instance')
to create a singleton binding.
If the container cannot resolve the dependency, it will throw ReflectionException
, but we can use the App::resolvingAny(Closure)
method to resolve any specified type in the form of a callback function .
Note: If you have registered a resolving method for a certain type, the resolvingAny
method will still be called, but it will return directly bind
The return value of the method.
Tips
Where to write these bindings:If it is just a small application, you can write it in a global start file global/start.php
, but if the project becomes larger and larger, it will be necessary to use Service Provider.
Testing:
When you need quick and easy testing, you can consider usingphp artisan tinker
. It is very powerful and can help you improve your Laravel testing process. Reflection API:
PHP’s Reflection API is very powerful. If you want to go deep into Laravel Ioc, you need to be familiar with the Reflection API. You can first read this tutorial to get more information. [Related recommendations: PHP video tutorial]The above is the detailed content of Detailed introduction to dependency injection and IoC in Laravel (with examples). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

The method of handling Laravel's email failure to send verification code is to use Laravel...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

How to implement the table function of custom click to add data in dcatadmin (laravel-admin) When using dcat...
