tg-dialog-id/.php-cs-fixer.dist.php

22 lines
465 B
PHP
Raw Normal View History

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