mirror of
https://github.com/danog/magnaluna.git
synced 2024-11-26 19:44:46 +01:00
12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
|
<?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;
|