1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-22 21:52:58 +02:00

Restore using cache for php-cs-fixer

This commit is contained in:
Elan Ruusamäe
2019-12-10 08:44:51 +02:00
committed by Elan Ruusamäe
parent a4c3c41161
commit f960c01e93

View File

@@ -1,7 +1,7 @@
<?php declare(strict_types=1);
return PhpCsFixer\Config::create()
->setUsingCache(false)
->setUsingCache(true)
->setRiskyAllowed(true)
->setRules(
[
@@ -235,4 +235,6 @@ return PhpCsFixer\Config::create()
->name('*.php')
->ignoreDotFiles(true)
->ignoreVCS(true)
);
);
// vim:ft=php