1
0
mirror of https://github.com/danog/dns.git synced 2024-11-27 04:24:48 +01:00
dns/.php-cs-fixer.dist.php

12 lines
223 B
PHP
Raw Normal View History

2017-06-17 10:49:54 +02:00
<?php
2019-01-25 02:27:47 +01:00
$config = new Amp\CodeStyle\Config();
$config->getFinder()
->in(__DIR__ . '/examples')
2021-12-15 23:55:33 +01:00
->in(__DIR__ . '/src')
2019-01-25 02:27:47 +01:00
->in(__DIR__ . '/test');
2021-12-15 23:55:33 +01:00
$config->setCacheFile(__DIR__ . '/.php_cs.cache');
2019-01-25 02:27:47 +01:00
return $config;