We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5ea3a2 + 51a46eb commit c4726ffCopy full SHA for c4726ff
src/Template/.php-cs-fixer.dist.php
@@ -10,10 +10,19 @@
10
__DIR__ . '/app/',
11
__DIR__ . '/tests/',
12
])
13
- ->exclude('build')
14
- ->append([__FILE__]);
+ ->exclude([
+ 'build',
15
+ '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