<?phpdeclare(strict_types=1);namespace Acme\SudcmsBundle;use Symfony\Component\DependencyInjection\ContainerBuilder;use Symfony\Component\HttpKernel\Bundle\Bundle;class AcmeSudcmsBundle extends Bundle{ public function build(ContainerBuilder $container) { parent::build($container); // If you need to add compiler pass, register them here //$container->addCompilerPass(new MyAwesomeCompilerPass()); } public function getPath(): string { return \dirname(__DIR__); }}