1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/.php-cs-fixer.dist.php

11 lines
189 B
PHP
Raw Normal View History

<?php
2021-12-02 18:20:10 +01:00
$config = new Amp\CodeStyle\Config;
2019-02-26 06:09:26 +01:00
$config->getFinder()
2021-12-02 18:20:10 +01:00
->in(__DIR__ . '/src')
2019-02-26 06:09:26 +01:00
->in(__DIR__ . '/test');
2021-12-02 18:20:10 +01:00
$config->setCacheFile(__DIR__ . '/.php_cs.cache');
2019-02-26 06:09:26 +01:00
return $config;