Skip to content

Commit 64d1c50

Browse files
committed
chore: update php-cs-fixer.dist.php
1 parent 4b3133e commit 64d1c50

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.php-cs-fixer.dist.php

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,18 @@
1212
__DIR__ . '/src/',
1313
__DIR__ . '/tests/',
1414
])
15-
->exclude('build')
16-
->append([__FILE__]);
15+
->exclude([
16+
'build',
17+
'Views',
18+
])
19+
->append([
20+
__FILE__,
21+
__DIR__ . '/rector.php',
22+
]);
1723

1824
$overrides = [
1925
'declare_strict_types' => true,
26+
// 'void_return' => true,
2027
];
2128

2229
$options = [

0 commit comments

Comments
 (0)