mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-13 13:25:19 +02:00
15 lines
320 B
PHP
15 lines
320 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use TwigCsFixer\Config\Config;
|
|
use TwigCsFixer\Ruleset\Ruleset;
|
|
use TwigCsFixer\Standard\Symfony;
|
|
use TwigCsFixer\Standard\TwigCsFixer;
|
|
|
|
$ruleset = new Ruleset();
|
|
$ruleset->addStandard(new TwigCsFixer());
|
|
$ruleset->addStandard(new Symfony());
|
|
|
|
return new Config()->setRuleset($ruleset);
|