murph-skeleton/core/Bundle/CoreBundle.php

25 lines
548 B
PHP
Raw Normal View History

2021-03-24 12:27:07 +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\HttpKernel\Bundle\Bundle;
2022-01-24 22:33:07 +01:00
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
2021-03-24 12:27:07 +01:00
class CoreBundle extends Bundle
{
2022-01-24 22:33:07 +01:00
public function getContainerExtension(): ?ExtensionInterface
2021-03-24 12:27:07 +01:00
{
return new CoreExtension();
}
}