Service container
Service container
Service container
Tool for managing class dependencies and performing dependency injection.
Automatic Service Loading
Thanks to this configuration, you can automatically use any classes from the src/ directory as a service, without needing to manually configure it.
If you'd prefer to manually wire your service, that's totally possible
Injecting services/config into a service
The container will automatically know to pass the logger
service when instantiating the MessageGenerator
thanks toautowiring
. autowire:true in services.yml
Configure arguments
Tags
Service tags are a way to tell Symfony or other third-party bundles that your service should be registered in some special way. Take the following example:
Services tagged with the twig.extension
tag are collected during the initialization of TwigBundle and added to Twig as extensions.
Service parameters
#[Required] in setter
same as
Choose a specific service
We inject LoggerInterface
but it has multiple implementations such as logger
, monolog.logger.request
, monolog.logger.php
In these situations, the container is usually configured to automatically choose one of the service
But, you can control this and pass in a different logger:
public vs private services
By default every service is private. You cannot access them using $container->get()
As a best practice, you should only create private services and you should fetch services using dependency injection instead of using $container->get()
.
bind arguments globally
Later
more
service subscriber and locator
decorator service
factory service
service closures
Injecting a Closure as an Argument ??
Container Building Workflow
Binding Arguments by Name or Type ??
A Compiler Pass in Symfony is a way to manipulate or modify service definitions within the dependency injection container before it is fully compiled and used by the application.
What It's Useful For:
Customizing Service Definitions: You can add, remove, or alter services and their dependencies programmatically.
Tag Processing: It allows you to find all services tagged with a specific label and apply custom logic, such as registering them in a registry service.
Advanced Dependency Injection: You can dynamically modify service configurations that can't be predefined in static YAML or XML files.
Example Use Case:
Suppose you have multiple services tagged as app.custom_logger
. You can use a compiler pass to collect these services and inject them into a logger manager.
How It Works:
Create the Compiler Pass Class: Extend
CompilerPassInterface
and implement theprocess
method.Modify Service Container: Use the
ContainerBuilder
object to access and modify service definitions.Register the Compiler Pass: Add it to the
Kernel
in thebuild
method.
Code Example:
Register it in Kernel
:
Summary:
Compiler Passes are powerful for customizing and optimizing service definitions during the container compilation process, providing flexibility for complex dependency injection scenarios.