File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- /art export-ignore
2- /docs export-ignore
3- /tests export-ignore
4- /scripts export-ignore
5- /.github export-ignore
6- /.php_cs export-ignore
7- .editorconfig export-ignore
8- .gitattributes export-ignore
9- .gitignore export-ignore
10- .travis.yml export-ignore
11- phpstan.neon export-ignore
12- rector.yaml export-ignore
13- phpunit.xml export-ignore
14- CHANGELOG.md export-ignore
15- CONTRIBUTING.md export-ignore
16- README.md export-ignore
1+ /art export-ignore
2+ /docs export-ignore
3+ /tests export-ignore
4+ /scripts export-ignore
5+ /.github export-ignore
6+ /.php-cs-fixer.dist.php export-ignore
7+ .editorconfig export-ignore
8+ .gitattributes export-ignore
9+ .gitignore export-ignore
10+ phpstan.neon export-ignore
11+ phpunit.xml export-ignore
12+ CHANGELOG.md export-ignore
13+ CONTRIBUTING.md export-ignore
14+ README.md export-ignore
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ composer.lock
44/vendor /
55coverage.xml
66.phpunit.result.cache
7- .php_cs.cache
7+ /.php-cs-fixer.php
8+ .php-cs-fixer.cache
89.temp /coverage.php
910* .swp
1011* .swo
Original file line number Diff line number Diff line change 11<?php
22
33$ finder = PhpCsFixer \Finder::create ()
4- ->in (__DIR__ . DIRECTORY_SEPARATOR . 'tests ' )
54 ->in (__DIR__ . DIRECTORY_SEPARATOR . 'src ' )
6- ->append (['.php_cs ' ]);
5+ ->in (__DIR__ . DIRECTORY_SEPARATOR . 'tests ' )
6+ ->append (['.php-cs-fixer.dist.php ' ]);
77
88$ rules = [
99 '@Symfony ' => true ,
2222
2323$ rules ['increment_style ' ] = ['style ' => 'post ' ];
2424
25- return PhpCsFixer \Config:: create ( )
25+ return ( new PhpCsFixer \Config () )
2626 ->setUsingCache (true )
2727 ->setRules ($ rules )
2828 ->setFinder ($ finder );
You can’t perform that action at this time.
0 commit comments