/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/HttpKernel/Bundle/AbstractBundle.php
33 строки
835 B
Nicolas Grekas
[DependencyInjection] Add Kernel and Bundle infrastructure for HTTP-less DI-powered apps
01 апр 2026, 20:55
01 апр 2026, 20:55
9a122ee
Код
Авторство
О чём код?
<?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\HttpKernel\Bundle; use Symfony\Component\DependencyInjection\Extension\ExtensionInterface; use Symfony\Component\DependencyInjection\Kernel\AbstractBundle as BaseAbstractBundle; /** * A Bundle that provides configuration hooks. * * @author Yonel Ceruto <yonelceruto@gmail.com> */ abstract class AbstractBundle extends Bundle { public function getContainerExtension(): ?ExtensionInterface { return BaseAbstractBundle::getContainerExtension(); } public function getPath(): string { return BaseAbstractBundle::getPath(); } }