public function __construct() { parent::
__construct('test', false
);
} public function registerBundles(): iterable
{ return [ new FrameworkBundle(),
new TwigBundle(),
new WebProfilerBundle(),
];
} protected function configureRoutes(RoutingConfigurator
$routes): void
{ $routes->
import(__DIR__.'/../../Resources/config/routing/profiler.xml'
)->
prefix('/_profiler'
);
$routes->
import(__DIR__.'/../../Resources/config/routing/wdt.xml'
)->
prefix('/_wdt'
);
$routes->
add('_', '/'
)->
controller('kernel::homepageController'
);
} protected function configureContainer(ContainerBuilder
$container, LoaderInterface
$loader): void
{