murph-skeleton/src/Bundle/AppBundle.php
2022-01-24 22:33:07 +01:00

25 lines
535 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\Bundle;
use App\DependencyInjection\AppExtension;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
class AppBundle extends Bundle
{
public function getContainerExtension(): ?ExtensionInterface
{
return new AppExtension();
}
}