1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 10:49:37 +02:00
ampache/.php_cs
Phyks (Lucas Verney) 93440d8af5 Use cache in PHPCs
2016-06-14 17:54:24 +02:00

19 lines
435 B
PHP

<?php
use Symfony\CS\FixerInterface;
$finder = Symfony\CS\Finder\DefaultFinder::create()
->exclude('lib/components')
->exclude('lib/vendor')
->exclude('modules')
->exclude('nbproject')
->in(__DIR__)
->in(__DIR__ . '/modules/localplay')
->in(__DIR__ . '/modules/catalog')
->in(__DIR__ . '/modules/plugins')
;
return Symfony\CS\Config\Config::create()
->finder($finder)
->setUsingCache(true)
;