/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/DependencyInjection/Attribute/AutowireServiceClosure.php
30 строк
817 B
Alexandre Daubois
[DependencyInjection][HttpKernel] Add PHPDoc to attribute classes and properties
02 янв 2024, 16:18
02 янв 2024, 16:18
a9030f1
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\DependencyInjection\Attribute; use Symfony\Component\DependencyInjection\Argument\ServiceClosureArgument; use Symfony\Component\DependencyInjection\Reference; /** * Attribute to wrap a service in a closure that returns it. */ #[\Attribute(\Attribute::TARGET_PARAMETER)] class AutowireServiceClosure extends Autowire { /** * @param string $service The service id to wrap in the closure */ public function __construct(string $service) { parent::__construct(new ServiceClosureArgument(new Reference($service))); } }