1
0
mirror of https://github.com/danog/loop.git synced 2024-11-26 11:54:51 +01:00
loop/.php-cs-fixer.dist.php
2022-12-24 17:24:51 +01:00

22 lines
465 B
PHP

<?php
$config = new class extends Amp\CodeStyle\Config {
public function getRules(): array
{
return array_merge(parent::getRules(), [
'void_return' => true,
]);
}
};
$config->getFinder()
->in(__DIR__ . '/lib')
->in(__DIR__ . '/test')
->in(__DIR__ . '/examples');
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
$config->setCacheFile($cacheDir . '/.php_cs.cache');
return $config;