aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/simplepie/simplepie/.php-cs-fixer.dist.php
blob: d26f7c6c66d12e7a70ad6b7375a1fcbc0555c179 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                   







                                



                                            


                        
<?php

$finder = (new PhpCsFixer\Finder())
    ->in('build')
    ->in('library')
    ->in('src')
    ->in('tests')
;

return (new PhpCsFixer\Config())
    ->setRules([
        '@PSR12' => true,
        '@PHP71Migration' => true,
        '@PHP71Migration:risky' => true,
        'void_return' => false,
        '@PHPUnit84Migration:risky' => true,
    ])
    ->setFinder($finder)
;