1
0
mirror of https://github.com/danog/process.git synced 2024-11-30 04:39:04 +01:00
process/.php_cs
2021-12-10 17:53:24 -06:00

12 lines
221 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;