12 lines
293 B
PHP
12 lines
293 B
PHP
<?php declare(strict_types=1);
|
|
|
|
use Symfony\Config\TwigConfig;
|
|
|
|
return static function (TwigConfig $config): void {
|
|
$config->formThemes(['form_custom_layout.html.twig'])
|
|
->defaultPath('%kernel.project_dir%/templates')
|
|
->debug('%kernel.debug%')
|
|
->strictVariables('%kernel.debug%')
|
|
;
|
|
};
|