sql/.php_cs

11 lines
225 B
Plaintext
Raw Normal View History

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