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 8a77f4a commit 38fc20dCopy full SHA for 38fc20d
Makefile
@@ -27,8 +27,8 @@ cs-fix:
27
28
.PHONY: phpstan
29
phpstan:
30
- php vendor/bin/phpstan analyse -l 8 -c phpstan.neon src tests
+ php vendor/bin/phpstan analyse -c phpstan.neon
31
32
.PHONY: phpstan-generate-baseline
33
phpstan-generate-baseline:
34
- php vendor/bin/phpstan analyse -l 8 -c phpstan.neon src tests -b phpstan-baseline.neon
+ php vendor/bin/phpstan analyse -c phpstan.neon -b phpstan-baseline.neon
phpstan.neon
@@ -13,6 +13,11 @@ includes:
13
- phar://phpstan.phar/conf/bleedingEdge.neon
14
15
parameters:
16
+ level: 8
17
+ paths:
18
+ - src
19
+ - tests
20
+
21
excludePaths:
22
- tests/*/data/*
23
- tests/*/data-attributes/*
0 commit comments