1
0
mirror of https://github.com/danog/file.git synced 2025-01-22 21:31:15 +01:00
file/.php_cs.dist

11 lines
191 B
Plaintext
Raw Normal View History

2017-06-17 23:41:57 +02:00
<?php
$config = new Amp\CodeStyle\Config();
$config->getFinder()
2019-09-13 22:04:47 -05:00
->in(__DIR__ . '/src')
->in(__DIR__ . '/test');
2021-06-21 21:08:24 +02:00
$config->setCacheFile(__DIR__ . '/.php_cs.cache');
return $config;