tg-file-decoder/.php-cs-fixer.dist.php

24 lines
537 B
PHP
Raw Permalink Normal View History

2021-08-14 16:08:15 +02:00
<?php
2024-04-01 14:28:39 +02:00
$config = new class extends Amp\CodeStyle\Config {
public function getRules(): array
{
return array_merge(
parent::getRules(),
[
'phpdoc_to_property_type' => true,
'phpdoc_to_param_type' => true,
]
);
}
};
2021-08-14 16:08:15 +02:00
$config->getFinder()
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests');
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
$config->setCacheFile($cacheDir . '/.php_cs.cache');
return $config;