forked from Stogon/unleash-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.php_cs.dist
More file actions
25 lines (24 loc) · 704 Bytes
/
.php_cs.dist
File metadata and controls
25 lines (24 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/*
* This document has been generated with
* https://mlocati.github.io/php-cs-fixer-configurator/?version=2.15#configurator
* you can change this configuration by importing this file.
*/
return PhpCsFixer\Config::create()
->setIndent("\t")
->setRules([
'@Symfony' => true,
'@PHP70Migration' => true,
'@PHP71Migration' => true,
'@PHP73Migration' => true,
'@PHP74Migration' => true,
'array_syntax' => ['syntax' => 'short'],
'yoda_style' => false,
'ordered_imports' => true,
'phpdoc_to_comment' => false,
])
->setFinder(PhpCsFixer\Finder::create()
->exclude(['vendor'])
->in(__DIR__)
)
;