mirror of
https://github.com/amphp/parallel.git
synced 2025-01-16 20:28:21 +01:00
13 lines
222 B
PHP
13 lines
222 B
PHP
|
<?php
|
||
|
|
||
|
$config = new Amp\CodeStyle\Config;
|
||
|
|
||
|
$config->getFinder()
|
||
|
->in(__DIR__ . '/examples')
|
||
|
->in(__DIR__ . '/src')
|
||
|
->in(__DIR__ . '/test');
|
||
|
|
||
|
$config->setCacheFile(__DIR__ . '/.php_cs.cache');
|
||
|
|
||
|
return $config;
|