]> git.mxchange.org Git - friendica.git/blob - library/Mobile_Detect/.php_cs
vier: fix missing icons
[friendica.git] / library / Mobile_Detect / .php_cs
1 <?php
2
3 use Symfony\CS\FixerInterface;
4
5 $finder = Symfony\CS\Finder\DefaultFinder::create()
6     ->notName('LICENSE')
7     ->notName('README.md')
8     ->notName('.php_cs')
9     ->notName('composer.*')
10     ->notName('phpunit.xml*')
11     ->notName('*.phar')
12     ->exclude('vendor')
13     ->exclude('examples')
14     ->exclude('Symfony/CS/Tests/Fixer')
15     ->notName('ElseifFixer.php')
16     ->exclude('data')
17     ->in(__DIR__)
18 ;
19
20 return Symfony\CS\Config\Config::create()
21     ->finder($finder)
22 ;
23
24