tinternet.net/core/Bundle/CoreBundle.php

24 lines
455 B
PHP
Raw Normal View History

2021-03-20 13:40:38 +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;
2021-03-23 21:53:34 +01:00
use App\Core\DependencyInjection\CoreExtension;
2021-03-20 13:40:38 +01:00
use Symfony\Component\HttpKernel\Bundle\Bundle;
2021-03-23 21:49:56 +01:00
class CoreBundle extends Bundle
2021-03-20 13:40:38 +01:00
{
public function getContainerExtension()
{
2021-03-23 21:53:34 +01:00
return new CoreExtension();
2021-03-20 13:40:38 +01:00
}
}