forked from ezsystems/ezplatform-solr-search-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs
29 lines (28 loc) · 792 Bytes
/
.php_cs
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
26
27
28
29
<?php
return Symfony\CS\Config\Config::create()
->setUsingLinter(false)
->setUsingCache(true)
->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL)
->fixers([
'concat_with_spaces',
'-concat_without_spaces',
'-empty_return',
'-phpdoc_params',
'-phpdoc_separation',
'-phpdoc_to_comment',
'-spaces_cast',
'-blankline_after_open_tag',
'-single_blank_line_before_namespace',
// psr0 has weird issues with our PSR-4 layout, so deactivating it.
'-psr0',
])
->finder(
Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__)
->notPath('phpunit.xml')
->exclude([
'vendor',
])
->files()->name('*.php')
)
;