mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-17 17:55:42 +00:00
14 lines
197 B
PHP
14 lines
197 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
$finder = (new PhpCsFixer\Finder())
|
||
|
|
->in(__DIR__)
|
||
|
|
->exclude('var')
|
||
|
|
;
|
||
|
|
|
||
|
|
return (new PhpCsFixer\Config())
|
||
|
|
->setRules([
|
||
|
|
'@Symfony' => true,
|
||
|
|
])
|
||
|
|
->setFinder($finder)
|
||
|
|
;
|