forked from mnabialek/laravel-eloquent-filter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.php_cs
More file actions
24 lines (22 loc) · 646 Bytes
/
.php_cs
File metadata and controls
24 lines (22 loc) · 646 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
<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->in([__DIR__ . '/src']);
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->fixers([
'short_array_syntax',
'duplicate_semicolon',
'return',
'single_quote',
'standardize_not_equal',
'new_with_braces',
'multiline_array_trailing_comma',
'phpdoc_scalar',
'remove_leading_slash_use',
'blankline_after_open_tag',
'single_blank_line_before_namespace',
'trailing_spaces',
'-psr0',
])
->setUsingCache(true)
->finder($finder);