1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/.php-cs-fixer.dist.php

11 lines
191 B
PHP
Raw Normal View History

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