murph-core/src/core/Bundle/CoreBundle.php

25 lines
548 B
PHP
Raw Normal View History

2022-03-13 19:32:32 +01:00
<?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;
2023-10-12 16:15:07 +02:00
use Symfony\Component\HttpKernel\Bundle\Bundle;
2022-03-13 19:32:32 +01:00
class CoreBundle extends Bundle
{
public function getContainerExtension(): ?ExtensionInterface
{
return new CoreExtension();
}
}