We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 776d567 commit 120584fCopy full SHA for 120584f
1 file changed
.php-cs-fixer.dist.php
@@ -10,11 +10,19 @@
10
__DIR__ . '/app/',
11
__DIR__ . '/tests/',
12
])
13
- ->exclude('build')
14
- ->exclude('Views/errors')
15
- ->append([__FILE__]);
+ ->exclude([
+ 'build',
+ 'Views',
16
+ ])
17
+ ->append([
18
+ __FILE__,
19
+ __DIR__ . '/rector.php',
20
+ ]);
21
-$overrides = [];
22
+$overrides = [
23
+ // 'declare_strict_types' => true,
24
+ // 'void_return' => true,
25
+];
26
27
$options = [
28
'finder' => $finder,
0 commit comments