mirror of
https://github.com/danog/better-prometheus.git
synced 2024-11-29 20:29:03 +01:00
20 lines
405 B
PHP
20 lines
405 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');
|
||
|
|
||
|
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
|
||
|
|
||
|
$config->setCacheFile($cacheDir . '/.php_cs.cache');
|
||
|
|
||
|
return $config;
|