mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-04 02:09:23 +02:00
16 lines
No EOL
351 B
PHP
16 lines
No EOL
351 B
PHP
<?php
|
|
|
|
use Symfony\CS\FixerInterface;
|
|
|
|
$finder = Symfony\CS\Finder\DefaultFinder::create()
|
|
->exclude('modules')
|
|
->exclude('nbproject')
|
|
->in(__DIR__)
|
|
->in(__DIR__ . '/modules/localplay')
|
|
->in(__DIR__ . '/modules/catalog')
|
|
->in(__DIR__ . '/modules/ampacheapi')
|
|
;
|
|
|
|
return Symfony\CS\Config\Config::create()
|
|
->finder($finder)
|
|
; |