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 691b655 commit 1c1af16Copy full SHA for 1c1af16
Makefile
@@ -39,7 +39,7 @@ fix:
39
40
.PHONY: static-analysis
41
static-analysis:
42
- vendor/bin/phpstan analyse $(PHPSTAN_ARGS)
+ vendor/bin/phpstan $(PHPSTAN_ARGS)
43
44
.PHONY: check
45
check: build cs static-analysis test
phpstan.neon.dist
@@ -1,6 +1,8 @@
1
parameters:
2
bootstrapFiles:
3
- - %currentWorkingDirectory%/tests/bootstrap.php
+ - %currentWorkingDirectory%/vendor/squizlabs/php_codesniffer/autoload.php
4
+ - %currentWorkingDirectory%/vendor/squizlabs/php_codesniffer/src/Util/Tokens.php
5
+
6
level: max
7
excludePaths:
8
- %currentWorkingDirectory%/tests/*/data/*
0 commit comments