mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-11 15:16:55 +03:00
* [Kocal/SymfonyAppPack] Add recipe * Remove Makefile from copy-from-recipe
11 lines
266 B
PHP
11 lines
266 B
PHP
<?php
|
|
|
|
$ruleset = new TwigCsFixer\Ruleset\Ruleset();
|
|
$ruleset->addStandard(new TwigCsFixer\Standard\Symfony());
|
|
|
|
$config = new TwigCsFixer\Config\Config();
|
|
$config->setCacheFile(__DIR__.'/tools/.cache/twig-cs-fixer');
|
|
$config->setRuleset($ruleset);
|
|
|
|
return $config;
|