File tree 3 files changed +31
-30
lines changed
3 files changed +31
-30
lines changed Original file line number Diff line number Diff line change
1
+ /.php-cs-fixer.cache
1
2
/composer.lock
2
3
/var /
3
4
/vendor /
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ declare (strict_types=1 );
4
+
5
+ return Camelot \CsFixer \Config::create ()
6
+ ->addRules (
7
+ Camelot \CsFixer \Rules::create ()
8
+ ->risky ()
9
+ ->php73 ()
10
+ ->phpUnit75 ()
11
+ )
12
+ ->addRules ([
13
+ '@PhpCsFixer:risky ' => true ,
14
+ 'header_comment ' => [
15
+ 'header ' => <<<'EOD'
16
+ This file is part of a Camelot Project package.
17
+
18
+ (c) The Camelot Project
19
+
20
+ For the full copyright and license information, please view the LICENSE file
21
+ that was distributed with this source code.
22
+ EOD
23
+ ],
24
+ 'native_function_invocation ' => [
25
+ 'include ' => ['@compiler_optimized ' ]
26
+ ],
27
+ ])
28
+ ->in ('src ' )
29
+ ->in ('tests ' )
30
+ ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments