src/Flexy/FrontBundle/FlexyFrontBundle.php line 12
<?php
// src/Acme/TestBundle/AcmeTestBundle.php
namespace App\Flexy\FrontBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use App\Flexy\FrontBundle\DependencyInjection\FlexyFrontExtension;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
use Symfony\Component\HttpKernel\Bundle\AbstractBundle;
class FlexyFrontBundle extends Bundle
{
public function build(ContainerBuilder $container)
{
parent::build($container);
$ext = new FlexyFrontExtension([],$container);
}
public function getPath(): string
{
return __DIR__;
}
}