12 lines
407 B
PHP
12 lines
407 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]]);
|
||
|
};
|