Ignore .php-cs-fixer.cache as cache file

This commit is contained in:
Yassine Guedidi 2022-08-01 19:11:30 +01:00 committed by Kevin Decherf
parent 82ff002223
commit c73c6052b6
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@ -12,7 +12,7 @@
/bin/*
!/bin/console
.php-cs-fixer.php
.php_cs.cache
.php-cs-fixer.cache
.phpunit.result.cache
phpunit.xml

View File

@ -45,4 +45,5 @@ return PhpCsFixer\Config::create()
])
->in(__DIR__)
)
->setCacheFile('.php-cs-fixer.cache')
;