11 lines
221 B
PHP
Executable file
11 lines
221 B
PHP
Executable file
<?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;
|