Get in touch
Thank you
We will get back to you as soon as possible
.pdf, .docx, .odt, .rtf, .txt, .pptx (max size 5 MB)

31.5.2023

7 min read

Symfony Dependency Injection: Efficient Implementation and Best Practices

Dependency Injection (DI) is widely used to manage class dependencies and avoid issues that can arise from implicit dependency usage. Most modern frameworks have native support for the DI feature or can use third-party libraries for it. In this article, we will describe the implementation of DI in the Symfony framework.

Symfony uses the PSR-11 compatible service container to store and obtain services. The service container is aware of all registered services and their dependencies and can provide an already initialized and properly created instance of the required service.

Creating a Service

A service is a class with properties, methods, constants, etc. After creating the class, we need to declare private/protected properties that will receive the injected services. There are two ways to fill these properties: using a constructor or using a setter method. The constructor approach is the most popular, usually used when creating a service. However, DI can also be used with setter calls.

The constructor approach is shown in the example below:

namespace App\Services;

class SmsService {
    private $gateway;

    public function __construct(SmsGatewayInterface $gateway)
    {
        $this->gateway = $gateway;
    }
}
# services.yml
services:
    sms.sender:
        class: App\Services\SmsService
        arguments:
            - '@sms.gateway'

The setter approach can be used when the dependency is added with a trait, which can provide both the property and the setter. To use this approach, add a 'calls' section to the service declaration, as shown below:

namespace App\Services;

class SmsService {
    private $gateway;

    public function setGateway(SmsGatewayInterface $gateway)
    {
        $this->gateway = $gateway;
    }
}
# services.yml
services:
    sms.sender:
        class: App\Services\SmsService
        calls:
            - [setGateway, ['@sms.gateway']]

This approach is useful in cases where the dependency is added with a trait or if you have circular dependencies and need to handle them somehow. However, this DI method is not recommended, usually, the constructor approach is more than sufficient.

Public and private services

Symfony allows marking services as either 'public' or 'private'. Public services can be accessed directly from the service container at runtime. Although it is not recommended to access services this way, if you have to, declare the service as public, as shown below:

# services.yml
services:
    sms.sender:
        class: App\Services\SmsService
        public: true
        arguments:
            - '@sms.gateway'

You can access public services using:

$container->get('sms.sender');

Trying to access a non-public service directly from the container will result in an exception.

Shared and non-shared services

By default, the service container contains shared services, which means you will receive the same instance of the service wherever you access it in the application. This is the default behavior of the Symfony service container and means that you don't need to add any kind of state to your services. In some specific cases, you may want to obtain a new instance from the container every time. Such services are referred to as non-shared. To declare a non-shared service, simply add a single line to the service declaration, as shown below:

# services.yml
services:
    sms.sender:
        class: App\Services\SmsService
        shared: false
        arguments:
            - '@sms.gateway'

Autowiring

When declaring a service, you can use autowiring of the arguments. The __construct() method of your service needs to have type-hinted arguments. The container will stand the dependencies in the __construct() method and automatically pass the appropriate arguments, as demonstrated below:

# services.yml
services:
    sms.sender:
        class: App\Services\SmsService
        autowire: true

Autoconfiguration

Autoconfiguration is a powerful feature of the Symfony framework that works similarly to autowiring. However, instead of passing the correct arguments to the constructor, it automatically adds the necessary tags to your service.

With autoconfiguration, Symfony scans your service and checks if it implements any interface that the container is aware of. If it does, the container will automatically add the required tag to the service.

Starting from Symfony 6+, autoconfiguration and autowiring are enabled by default for all services, simplifying the management of your application's dependencies. By leveraging these features, you can create a more modular and maintainable application architecture that is easier to extend and update.

# services.yml
services:
    sms.sender:
        class: App\Services\SmsService
        autoconfigure: true

Tags

Tags in Symfony services provide a powerful mechanism for organizing and grouping related services. By assigning tags to services, you can easily identify and manipulate them based on their common functionality or purpose. Tags are particularly useful when you want to apply specific operations or configurations to a subset of services. For example, if you have multiple event listeners in your application, you can tag them with a common tag such as "event_listener". Later on, you can retrieve all services with that tag and perform actions on them collectively. Here's an example of how to define a service with a tag in the service configuration:

services:
    app.event_listener.sms_was_sent_listener:
        class: App\EventListener\SmsWasSentEventListener
        tags:
            - { name: event_listener, event: my_event }

In this example, the app.event_listener.my_listener service is tagged with event_listener and is associated with the event my_event. Later on, you can retrieve all services with the event_listener tag and handle them accordingly. By leveraging tags, you can dynamically configure and manipulate groups of services in a flexible and extensible manner, making your Symfony application more modular and easier to maintain.

In addition to the predefined tags provided by Symfony, you can also create custom tags to further categorize and identify your services. Custom tags enable you to define your own criteria for grouping services and can be added to services based on specific requirements or functionality. This is particularly useful when you need t to apply custom logic or processing to a specific set of services.

Custom tags offer a flexible approach to categorizing services based on the specific needs of your application. They allow you to implement custom processing or apply specific functionality to a targeted group of services, enhancing the modularity and extensibility of your Symfony application.

Using Parameters

Sometimes you may need to use certain values in your service that can’t be hard-coded or that may vary depending on the environment or configuration. In such cases, Symfony allows you to use parameters in the service declaration.

Here is a Symfony Dependency Injection example of how to use parameters in a service declaration:

# services.yml
parameters:
    sms.sender.name: "My SMS Sender"

services:
    sms.sender:
        class: App\Services\SmsService
        arguments:
            - '@sms.gateway'
            - '%sms.sender.name%'

The % sign indicates that a parameter should be used. In this example, we have defined a parameter called sms.sender.name with the value "My SMS Sender". We then use this parameter in the SmsService service declaration as the second argument.

Symfony Dependency Injection is a very powerful component and provides a huge number of exciting features which can help you build the application.

Best Practices

While PHP Dependency Injection is a powerful tool, it's essential to use it effectively and efficiently. Here are some best practices to keep in mind: minimizing the number of dependencies a service has, avoiding circular dependencies, using interfaces and type-hinting to make your code more flexible, and using lazy-loading to improve performance.

Symfony provides a powerful and flexible Dependency Injection framework that can easily handle your project's needs.

  • Use interfaces for dependencies: When defining a dependency, use interfaces instead of concrete classes. This helps to decouple your code and makes it easier to switch out implementations later if necessary.
  • Keep the container small: It's important to keep the number of services in the container to a minimum. This helps to keep the container performant and makes it easier to manage. If you find yourself dealing with a large number of services, consider breaking them up into smaller, more focused containers.
  • Use constructor injection instead of setter injection: While Symfony supports both constructor and setter injection, it's generally better to use constructor injection whenever possible. Constructor injection ensures that all dependencies are available when the object is created, making it easier to reason about the code.
  • Use autowiring with caution: While autowiring can be a convenient way to declare services and their dependencies, it can also lead to hard-to-debug issues if used incorrectly. Use autowiring with caution and make sure to test your code thoroughly.
  • Avoid circular dependencies: Circular dependencies occur when two or more services depend on each other. These can be challenging to manage and may result in performance issues. Avoid circular dependencies whenever possible by refactoring your code or using an event-driven architecture.

Take a look at our case study on the all-in-one wellness platform we’re developing in partnership with our customer using the Symfony framework

Conclusion

In conclusion, Symfony Dependency Injection is a powerful tool for efficiently managing class dependencies in a structured and maintainable way. Symfony offers a robust and flexible service container, making the implementation of dependency injection seamless in your application. By using features like autowiring, autoconfiguration, and parameters, you can streamline your application's architecture and make it more modular and easier to maintain.

At Binary Studio, our core values of being a student always, demonstrating leadership and expertise, and taking ownership and initiative drive us to excel in everything we do. Whether we work with Symfony or any other technology, we strive to find the most efficient and elegant solutions to any challenge we face and are always eager to share our knowledge and experience with others.

0 Comments
name *
email *