mirror of
https://github.com/danog/phpdoc.git
synced 2024-11-26 20:14:51 +01:00
15 lines
339 B
PHP
15 lines
339 B
PHP
<?php
|
|
|
|
$config = new Amp\CodeStyle\Config();
|
|
$config->getFinder()
|
|
->in(__DIR__ . '/src');
|
|
//->in(__DIR__ . '/tests')
|
|
//->in(__DIR__ . '/examples')
|
|
//->in(__DIR__ . '/tools');
|
|
|
|
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
|
|
|
|
$config->setCacheFile($cacheDir . '/.php_cs.cache');
|
|
|
|
return $config;
|