File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 11<?php
22
3+ /*
4+ * This file is part of PHP CS Fixer / PHPUnit Constraint XmlMatchesXsd.
5+ *
6+ * (c) SpacePossum
7+ * Dariusz Rumiński <dariusz.ruminski@gmail.com>
8+ *
9+ * This source file is subject to the MIT license that is bundled
10+ * with this source code in the file LICENSE.
11+ */
12+
13+ use PhpCsFixer \Config ;
14+ use PhpCsFixer \Finder ;
15+
316$ header = <<<'EOF'
417This file is part of PHP CS Fixer / PHPUnit Constraint XmlMatchesXsd.
518
1023with this source code in the file LICENSE.
1124EOF;
1225
13- $ finder = PhpCsFixer \ Finder::create ()
26+ $ finder = Finder::create ()
1427 ->exclude ('tests/Fixtures ' )
1528 ->in (__DIR__ )
29+ ->append ([__FILE__ ])
1630;
1731
18- return (new PhpCsFixer \ Config ())
32+ return (new Config ())
1933 ->setRiskyAllowed (true )
2034 ->setRules ([
2135 '@PhpCsFixer ' => true ,
You can’t perform that action at this time.
0 commit comments