1
0
mirror of https://github.com/danog/pipesbot.git synced 2024-11-26 11:34:40 +01:00
pipesbot/.php_cs.dist
2019-10-28 23:48:44 +01:00

12 lines
233 B
PHP

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