collection-crud/config/packages/twig.php

12 lines
293 B
PHP
Raw Normal View History

2022-11-17 15:32:57 -05:00
<?php declare(strict_types=1);
2022-11-03 10:44:05 -04:00
2022-11-17 15:32:57 -05:00
use Symfony\Config\TwigConfig;
2022-11-03 10:44:05 -04:00
2022-11-17 15:32:57 -05:00
return static function (TwigConfig $config): void {
$config->formThemes(['form_custom_layout.html.twig'])
->defaultPath('%kernel.project_dir%/templates')
->debug('%kernel.debug%')
->strictVariables('%kernel.debug%')
;
2022-11-03 10:44:05 -04:00
};