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 8aebce0 commit ecfdb02Copy full SHA for ecfdb02
.travis.yml
@@ -27,10 +27,11 @@ install:
27
script:
28
- |
29
if [ "$COVERAGE" == "true" ]; then
30
- make tc
31
- travis_wait 30 make e2e
+ make tc
+ travis_wait 30 make e2e
32
else
33
- make tu
+ make tu
34
+ make phpstan
35
fi
36
37
deploy:
Makefile
@@ -29,7 +29,7 @@ cs: $(CODE_SNIFFER) $(CODE_SNIFFER_FIX)
PHPSTAN=vendor-bin/phpstan/vendor/bin/phpstan
phpstan: ## Runs PHPStan
phpstan: $(PHPSTAN)
- $(PHPNOGC) $(PHPSTAN) analyze src -l7
+ $(PHPNOGC) $(PHPSTAN) analyze src -l6
.PHONY: build
build: ## Build the PHAR
0 commit comments