mirror of
https://github.com/danog/sql.git
synced 2024-11-26 20:15:08 +01:00
11 lines
189 B
PHP
11 lines
189 B
PHP
<?php
|
|
|
|
$config = new Amp\CodeStyle\Config;
|
|
$config->getFinder()
|
|
->in(__DIR__ . '/src')
|
|
->in(__DIR__ . '/test');
|
|
|
|
$config->setCacheFile(__DIR__ . '/.php_cs.cache');
|
|
|
|
return $config;
|