Using a Factory to Create Services
Warning: You are browsing the documentation for Symfony 3.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.1 (the current stable version).
Symfony's Service Container provides a powerful way of controlling the creation of objects, allowing you to specify arguments passed to the constructor as well as calling methods and setting parameters. Sometimes, however, this will not provide you with everything you need to construct your objects. For this situation, you can use a factory to create the object and tell the service container to call a method on the factory rather than directly instantiating the class.
Suppose you have a factory that configures and returns a new NewsletterManager
object by calling the static createNewsletterManager()
method:
1 2 3 4 5 6 7 8 9 10 11
class NewsletterManagerStaticFactory
{
public static function createNewsletterManager()
{
$newsletterManager = new NewsletterManager();
// ...
return $newsletterManager;
}
}
To make the NewsletterManager
object available as a service, you can
configure the service container to use the
NewsletterManagerStaticFactory::createNewsletterManager()
factory method:
1 2 3 4 5 6 7 8 9
# app/config/services.yml
services:
# ...
AppBundle\Email\NewsletterManager:
# call the static method that creates the object
factory: ['AppBundle\Email\NewsletterManagerStaticFactory', 'createNewsletterManager']
# define the class of the created object
class: AppBundle\Email\NewsletterManager
Note
When using a factory to create services, the value chosen for class has no effect on the resulting service. The actual class name only depends on the object that is returned by the factory. However, the configured class name may be used by compiler passes and therefore should be set to a sensible value.
If your factory is not using a static function to configure and create your service, but a regular method, you can instantiate the factory itself as a service too. Later, in the "Using a Factory to Create Services" section, you learn how you can inject arguments in this method.
Configuration of the service container then looks like this:
1 2 3 4 5 6 7 8 9 10
# app/config/services.yml
services:
# ...
AppBundle\Email\NewsletterManagerFactory: ~
AppBundle\Email\NewsletterManager:
# call a method on the specified factory service
factory: ['@AppBundle\Email\NewsletterManagerFactory', 'createNewsletterManager']
class: AppBundle\Email\NewsletterManager
Passing Arguments to the Factory Method
Tip
Arguments to your factory method are autowired if that's enabled for your service.
If you need to pass arguments to the factory method you can use the arguments
options. For example, suppose the createNewsletterManager()
method in the previous
example takes the templating
service as an argument:
1 2 3 4 5 6 7 8
# app/config/services.yml
services:
# ...
AppBundle\Email\NewsletterManager:
class: AppBundle\Email\NewsletterManager
factory: 'AppBundle\Email\NewsletterManagerFactory:createNewsletterManager'
arguments: ['@templating']