domain-watchdog/.php-cs-fixer.dist.php

13 lines
225 B
PHP
Raw Permalink Normal View History

2024-08-02 23:24:52 +02:00
<?php
$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
2024-12-31 00:20:43 +01:00
->exclude('node_modules')
->exclude('var');
2024-08-02 23:24:52 +02:00
return (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
])
2024-12-31 00:20:43 +01:00
->setFinder($finder);