2022-11-17 15:32:57 -05:00
|
|
|
<?php declare(strict_types=1);
|
2022-11-03 10:44:05 -04:00
|
|
|
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
|
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
2023-07-21 10:35:15 -04:00
|
|
|
$containerConfigurator->extension('web_profiler', [
|
|
|
|
'toolbar' => TRUE,
|
|
|
|
'intercept_redirects' => FALSE,
|
2022-11-17 15:32:57 -05:00
|
|
|
]);
|
2022-11-03 10:44:05 -04:00
|
|
|
|
2023-07-21 10:35:15 -04:00
|
|
|
$containerConfigurator->extension('framework', [
|
2022-11-17 15:32:57 -05:00
|
|
|
'profiler' => [
|
2023-07-21 10:35:15 -04:00
|
|
|
'only_exceptions' => FALSE,
|
|
|
|
],
|
2022-11-17 15:32:57 -05:00
|
|
|
]);
|
2022-11-03 10:44:05 -04:00
|
|
|
};
|