1
0
mirror of https://github.com/danog/telerpc.git synced 2024-11-26 20:14:48 +01:00
telerpc/.php-cs-fixer.dist.php
2022-02-23 12:38:22 +01:00

12 lines
241 B
PHP

<?php
$config = new \Amp\CodeStyle\Config();
$config->getFinder()
->in(__DIR__.'/src');
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
$config->setCacheFile($cacheDir . '/.php_cs.cache');
return $config;