New in Symfony 6.1: Service Autowiring Attributes

Contributed by Kevin Bond in #45657 and #45783.

PHP attributes are arguably one of the new PHP features with more positive impact on how we develop applications. Attributes add structured, machine-readable metadata information in code. In Symfony we added support for them in: New in Symfony 5.2: Routing PHP attributes New in Symfony 5.2: Constraints as PHP attributes New in Symfony 5.2: Controller argument attributes New in Symfony 5.3: Service Autoconfiguration attributes New in Symfony 5.3: Autowiring Iterators/Locators and Aliases with Attributes New in Symfony 6.1: Service Decoration Attributes In Symfony 6.1 we're introducing another feature related to attributes so you can configure service autowiring with PHP attributes. In practice, this means that you can optionally not add any YAML/XML/PHP service configuration in config/ and configure your services directly in your code stored in src/. To do so, use the new #[Autowire] attribute in the constructor arguments of your services (or in the arguments of any controller method):

    use Symfony\Component\DependencyInjection\Attribute\Autowire;

class MyService { public function __construct(

[Autowire(service: 'some_service')]

    private $service1,

    #[Autowire(expression: 'service("App\\Mail\\MailerConfiguration").getMailerMethod()')
    private $service2,

    #[Autowire(value: '%env(json:file:resolve:AUTH_FILE)%')]
    private $parameter1,

    #[Autowire(value: '%kernel.project_dir%/config/dir')]
    private $parameter2,
) {}

// ...

}

In addition to the named arguments (service:, expression:, value:) you can also use the well-known service syntax used in Symfony's YAML config (@ for services and @= for expressions):

    use Symfony\Component\DependencyInjection\Attribute\Autowire;

class MyService { public function __construct(

[Autowire('@some_service')]

    private $service1,

    #[Autowire('@=service("App\\Mail\\MailerConfiguration").getMailerMethod()')
    private $service2,

    #[Autowire('%env(json:file:resolve:AUTH_FILE)%')]
    private $parameter1,
) {}

// ...

}

                Sponsor the Symfony project.

https://symfony.com/blog/new-in-symfony-6-1-service-autowiring-attributes?utm_source=Symfony%20Blog%20Feed&utm_medium=feed

Vytvořeno 3y | 3. 5. 2022 8:20:10


Chcete-li přidat komentář, přihlaste se

Ostatní příspěvky v této skupině

New in Symfony 7.3: Global Translation Parameters

Contributed by Hubert Lenoir in

24. 4. 2025 7:30:24 | Symfony
SymfonyOnline June 2025: FormFlow: Build Stunning Multistep Forms

SymfonyOnline June 2025 is almost here, starting in almost 2 months on:

June 10-11: Workshop days. It is possible to attend 1 two-day training or 2 one-day trainings. June 12-13: Online confe

23. 4. 2025 15:20:21 | Symfony
New in Symfony 7.3: Assets Pre-Compression

Contributed by Kévin Dunglas in

23. 4. 2025 8:20:31 | Symfony
SymfonyOnline June 2025: Inside a Financial App Breach: Debugging a Million-Dollar Bug

SymfonyOnline June 2025 is almost here, starting in almost 2 months on:

June 10-11: Workshop days. It is possible to attend 1 two-day training or 2 one-day trainings. June 12-13: Online confe

22. 4. 2025 13:50:03 | Symfony
New in Symfony 7.3: Invokable Commands and Input Attributes

This is the first article in a series showcasing the most important new features introduced by Symfony 7.3, which will be released at the end of May 2025.

22. 4. 2025 9:10:36 | Symfony
A Week of Symfony #955 (April 14–20, 2025)

This week, the upcoming Symfony 7.3 version improved the AsAlias attribute by adding a new argument, introduced Clock support for UriSigner, and refined the return type of the ContainerInterface::get(

20. 4. 2025 8:30:06 | Symfony
SymfonyOnline June 2025: Rethinking File Handling in Symfony

SymfonyOnline June 2025 is almost here, starting in almost 2 months on:

June 10-11: Workshop days. It is possible to attend 1 two-day training or 2 one-day trainings. June 12-13: Online confe

16. 4. 2025 16:30:02 | Symfony