15 lines
334 B
Plaintext
15 lines
334 B
Plaintext
|
<?php
|
||
|
|
||
|
$config = new Amp\CodeStyle\Config();
|
||
|
$config->getFinder()
|
||
|
->in(__DIR__ . '/src')
|
||
|
->in(__DIR__ . '/tests')
|
||
|
->in(__DIR__ . '/userbots')
|
||
|
->name(__DIR__ . '/*.php');
|
||
|
|
||
|
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
|
||
|
|
||
|
$config->setCacheFile($cacheDir . '/.php_cs.cache');
|
||
|
|
||
|
return $config;
|