Skip to content

Commit 885c37c

Browse files
committed
feat: added cs fixer rule
1 parent 28cc8b9 commit 885c37c

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.php-cs-fixer.php

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
11
<?php
22

33
$finder = Symfony\Component\Finder\Finder::create()
4-
->notPath('bootstrap')
5-
->notPath('storage')
6-
->notPath('vendor')
7-
->notPath('public')
8-
->notPath('database')
9-
->notPath('tests')
10-
->notPath('Modules')
11-
->in(__DIR__)
4+
->in([
5+
__DIR__ . '/src',
6+
__DIR__ . '/tests',
7+
])
128
->name('*.php')
13-
->name('_ide_helper')
149
->notName('*.blade.php')
1510
->ignoreDotFiles(true)
1611
->ignoreVCS(true);

0 commit comments

Comments
 (0)