better-prometheus/.php-cs-fixer.dist.php

23 lines
541 B
PHP
Raw Normal View History

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