sql/.php_cs

11 lines
228 B
Plaintext
Raw Normal View History

2018-06-29 12:12:40 +02:00
<?php
2018-06-29 12:27:27 +02:00
$config = new Amp\CodeStyle\Config();
2018-06-29 12:12:40 +02:00
$config->getFinder()->in(__DIR__);
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
$config->setCacheFile($cacheDir . '/.php_cs.cache');
return $config;