Skip to content

Commit 0ff5158

Browse files
committed
Remove test folder from quality tools configurations
For this proof of concept not needed.
1 parent cfdf538 commit 0ff5158

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.php-cs-fixer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
$finder = (new PhpCsFixer\Finder())
6-
->in(['src', 'tests']);
6+
->in(['src']);
77

88
return (new PhpCsFixer\Config())
99
->setCacheFile('var/.php-cs-fixer.cache')

phpstan.neon

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ parameters:
55
level: max
66
treatPhpDocTypesAsCertain: false
77
paths:
8-
- src/
9-
- tests/
8+
- src/

rector.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
->withCache(__DIR__ . '/var/rector')
3737
->withPaths([
3838
__DIR__ . '/src',
39-
__DIR__ . '/tests',
4039
])
4140
->withParallel()
4241
->withRules([

0 commit comments

Comments
 (0)