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