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.
1 parent 0736e9b commit c268276Copy full SHA for c268276
.php-cs-fixer.php
@@ -3,7 +3,7 @@
3
declare(strict_types=1);
4
5
$finder = (new PhpCsFixer\Finder())
6
- ->in(['src', 'tests']);
+ ->in(['src']);
7
8
return (new PhpCsFixer\Config())
9
->setCacheFile('var/.php-cs-fixer.cache')
phpstan.neon
@@ -5,5 +5,4 @@ parameters:
level: max
treatPhpDocTypesAsCertain: false
paths:
- - src/
- - tests/
+ - src/
rector.php
@@ -36,7 +36,6 @@
36
->withCache(__DIR__ . '/var/rector')
37
->withPaths([
38
__DIR__ . '/src',
39
- __DIR__ . '/tests',
40
])
41
->withParallel()
42
->withRules([
0 commit comments