mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-01 23:28:45 +02:00
12 lines
223 B
PHP
12 lines
223 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;
|