-
Notifications
You must be signed in to change notification settings - Fork 793
/
.php-cs-fixer.dist.php
38 lines (34 loc) · 1.19 KB
/
.php-cs-fixer.dist.php
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
30
31
32
33
34
35
36
37
38
<?php
$header = <<<EOF
This file is part of the FOSElasticaBundle package.
(c) FriendsOfSymfony <https://friendsofsymfony.github.com/>
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF;
return (new PhpCsFixer\Config())
->setRules([
'@PHP71Migration' => true,
'@PSR2' => true,
'@PhpCsFixer' => true,
'@Symfony' => true,
'header_comment' => ['header' => $header],
'is_null' => true,
'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'],
'method_chaining_indentation' => false,
'native_constant_invocation' => true,
'native_function_invocation' => [
'include' => ['@all'],
],
'no_alias_functions' => true,
'nullable_type_declaration_for_default_null_value' => true,
'ordered_imports' => true,
'php_unit_test_class_requires_covers' => false,
'phpdoc_no_empty_return' => false,
'visibility_required' => ['elements' => ['property', 'method', 'const']],
])
->setUsingCache(true)
->setFinder(
PhpCsFixer\Finder::create()
->in(__DIR__)
)
;