dns-over-https/.php-cs-fixer.dist.php

12 lines
223 B
PHP
Raw Normal View History

2019-06-10 19:32:28 +02:00
<?php
$config = new Amp\CodeStyle\Config();
$config->getFinder()
->in(__DIR__ . '/examples')
->in(__DIR__ . '/lib')
->in(__DIR__ . '/test');
2022-10-29 20:44:35 +02:00
$config->setCacheFile(__DIR__ . '/.php_cs.cache');
2019-06-10 19:32:28 +02:00
return $config;