parallel-functions/.php-cs-fixer.dist.php

13 lines
299 B
PHP
Raw Permalink Normal View History

2022-02-02 23:04:43 +01:00
<?php
$config = new Amp\CodeStyle\Config;
$config->getFinder()
->in(__DIR__ . "/examples")
->in(__DIR__ . "/src")
->in(__DIR__ . "/test");
$cacheDir = getenv('TRAVIS') ? getenv('HOME') . '/.php-cs-fixer' : __DIR__;
$config->setCacheFile($cacheDir . '/.php_cs.cache');
return $config;