Add a way of validating answers and render whole group of questions not just one file at a time. Add a cs-fixer package

This commit is contained in:
Krzysztof Płaczek
2024-10-24 16:23:43 +02:00
parent adb1449085
commit d07e20a1d5
13 changed files with 289 additions and 110 deletions

13
.php-cs-fixer.dist.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('var')
;
return (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
])
->setFinder($finder)
;