/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/HttpKernel/Bundle/BundleInterface.php
22 строки
593 B
Nicolas Grekas
[HttpKernel] Move getNamespace() from DI to HttpKernel
03 апр 2026, 16:53
03 апр 2026, 16:53
d414765
Код
Авторство
О чём код?
<?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\Kernel\BundleInterface as BaseBundleInterface; /** * @deprecated since Symfony 8.1, use Symfony\Component\DependencyInjection\Kernel\BundleInterface instead */ interface BundleInterface extends BaseBundleInterface { public function getNamespace(): string; }