17 lines
422 B
PHP
17 lines
422 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
|
$containerConfigurator->extension('web_profiler', [
|
|
'toolbar' => TRUE,
|
|
'intercept_redirects' => FALSE,
|
|
]);
|
|
|
|
$containerConfigurator->extension('framework', [
|
|
'profiler' => [
|
|
'only_exceptions' => FALSE,
|
|
],
|
|
]);
|
|
};
|