File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
vendor /
2
2
composer.lock
3
3
phpunit.xml
4
- .php_cs.cache
4
+ .php-cs-fixer.cache
5
+ .php-cs-fixer.php
5
6
.phpunit.result.cache
6
7
composer.phar
7
8
package.tar
Original file line number Diff line number Diff line change 4
4
exit (0 );
5
5
}
6
6
7
- return PhpCsFixer \Config:: create ( )
7
+ return ( new PhpCsFixer \Config () )
8
8
->setRules ([
9
9
'@PHP71Migration ' => true ,
10
10
'@PHPUnit75Migration:risky ' => true ,
14
14
])
15
15
->setRiskyAllowed (true )
16
16
->setFinder (
17
- PhpCsFixer \Finder:: create ( )
17
+ ( new PhpCsFixer \Finder () )
18
18
->in (__DIR__ .'/src ' )
19
19
->append ([__FILE__ ])
20
20
->notPath ('#/Fixtures/# ' )
39
39
->notPath ('Symfony/Component/Debug/Tests/DebugClassLoaderTest.php ' )
40
40
->notPath ('Symfony/Component/ErrorHandler/Tests/DebugClassLoaderTest.php ' )
41
41
)
42
+ ->setCacheFile ('.php-cs-fixer.cache ' )
42
43
;
You can’t perform that action at this time.
0 commit comments