murph-core/src/core/Bundle/CoreBundle.php
2023-10-12 16:15:07 +02:00

25 lines
548 B
PHP

<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Core\Bundle;
use App\Core\DependencyInjection\CoreExtension;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class CoreBundle extends Bundle
{
public function getContainerExtension(): ?ExtensionInterface
{
return new CoreExtension();
}
}