mirror of
https://github.com/filegator/filegator.git
synced 2025-08-24 14:02:54 +02:00
initial commit
This commit is contained in:
17
.php_cs
Normal file
17
.php_cs
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
$finder = PhpCsFixer\Finder::create()
|
||||
->exclude('vendor')
|
||||
->in(__DIR__)
|
||||
;
|
||||
|
||||
return PhpCsFixer\Config::create()
|
||||
->setUsingCache(false)
|
||||
->setRules([
|
||||
'@PhpCsFixer' => true,
|
||||
'yoda_style' => null,
|
||||
'not_operator_with_successor_space' => true,
|
||||
'php_unit_test_class_requires_covers' => false,
|
||||
])
|
||||
->setFinder($finder)
|
||||
;
|
Reference in New Issue
Block a user