2024-02-05 15:16:43 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
|
|
|
|
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
|
|
|
$containerConfigurator->extension('framework', [
|
|
|
|
'router' => null,
|
|
|
|
]);
|
|
|
|
if ($containerConfigurator->env() === 'prod') {
|
2024-06-09 14:43:34 +00:00
|
|
|
$containerConfigurator->extension('framework', [
|
|
|
|
'router' => [
|
|
|
|
'strict_requirements' => null,
|
2024-02-05 15:16:43 +00:00
|
|
|
],
|
2024-06-09 14:43:34 +00:00
|
|
|
]);
|
2024-02-05 15:16:43 +00:00
|
|
|
}
|
|
|
|
};
|