This repository was archived by the owner on Jan 18, 2018. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<?php
22
3- $ fixers = array (
4- 'psr0 ' ,
5- 'encoding ' ,
6- 'short_tag ' ,
7- 'braces ' ,
8- 'elseif ' ,
9- 'eof_ending ' ,
10- 'function_declaration ' ,
11- 'indentation ' ,
12- 'line_after_namespace ' ,
13- 'linefeed ' ,
14- 'lowercase_constants ' ,
15- 'lowercase_keywords ' ,
16- 'multiple_use ' ,
17- 'php_closing_tag ' ,
18- 'trailing_spaces ' ,
19- 'duplicate_semicolon ' ,
20- 'extra_empty_lines ' ,
21- 'include ' ,
22- 'multiline_array_trailing_comma ' ,
23- 'namespace_no_leading_whitespace ' ,
24- 'new_with_braces ' ,
25- 'object_operator ' ,
26- 'operators_spaces ' ,
27- 'phpdoc_params ' ,
28- 'single_array_no_trailing_comma ' ,
29- 'spaces_before_semicolon ' ,
30- 'spaces_cast ' ,
31- 'standardize_not_equal ' ,
32- 'ternary_spaces ' ,
33- 'unused_use ' ,
34- 'whitespacy_lines ' ,
35- 'multiline_spaces_before_semicolon ' ,
36- 'ordered_use ' ,
37- 'remove_lines_between_uses ' ,
38- );
39-
40- return Symfony \CS \Config \Config::create ()->fixers ($ fixers )
41- ->finder (Symfony \CS \Finder \DefaultFinder::create ()->in (__DIR__ ));
3+ return Symfony \CS \Config \Config::create ()
4+ ->fixers (array ('-return ' , '-yoda_conditions ' , 'multiline_spaces_before_semicolon ' , 'ordered_use ' ))
5+ ->finder (Symfony \CS \Finder \DefaultFinder::create ()->notName ('*.blade.php ' )->in (__DIR__ ));
You can’t perform that action at this time.
0 commit comments