Skip to content

Commit 120584f

Browse files
committed
chore: update .php-cs-fixer.dist.php
1 parent 776d567 commit 120584f

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.php-cs-fixer.dist.php

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,19 @@
1010
__DIR__ . '/app/',
1111
__DIR__ . '/tests/',
1212
])
13-
->exclude('build')
14-
->exclude('Views/errors')
15-
->append([__FILE__]);
13+
->exclude([
14+
'build',
15+
'Views',
16+
])
17+
->append([
18+
__FILE__,
19+
__DIR__ . '/rector.php',
20+
]);
1621

17-
$overrides = [];
22+
$overrides = [
23+
// 'declare_strict_types' => true,
24+
// 'void_return' => true,
25+
];
1826

1927
$options = [
2028
'finder' => $finder,

0 commit comments

Comments
 (0)