32 lines
965 B
PHP
32 lines
965 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
||
|
|
||
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
||
|
if ($containerConfigurator->env() === 'dev') {
|
||
|
$containerConfigurator->extension('web_profiler', [
|
||
|
'toolbar' => true,
|
||
|
'intercept_redirects' => false,
|
||
|
]);
|
||
|
$containerConfigurator->extension('framework', [
|
||
|
'profiler' => [
|
||
|
'only_exceptions' => false,
|
||
|
'collect_serializer_data' => true,
|
||
|
],
|
||
|
]);
|
||
|
}
|
||
|
if ($containerConfigurator->env() === 'test') {
|
||
|
$containerConfigurator->extension('web_profiler', [
|
||
|
'toolbar' => false,
|
||
|
'intercept_redirects' => false,
|
||
|
]);
|
||
|
$containerConfigurator->extension('framework', [
|
||
|
'profiler' => [
|
||
|
'collect' => false,
|
||
|
],
|
||
|
]);
|
||
|
}
|
||
|
};
|