17 lines
478 B
PHP
17 lines
478 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
||
|
|
||
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
||
|
$containerConfigurator->extension('twig', [
|
||
|
'default_path' => '%kernel.project_dir%/templates',
|
||
|
]);
|
||
|
if ($containerConfigurator->env() === 'test') {
|
||
|
$containerConfigurator->extension('twig', [
|
||
|
'strict_variables' => true,
|
||
|
]);
|
||
|
}
|
||
|
};
|