Skip to content

Commit ecfdb02

Browse files
committed
Fix phpstan
1 parent 8aebce0 commit ecfdb02

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ install:
2727
script:
2828
- |
2929
if [ "$COVERAGE" == "true" ]; then
30-
make tc
31-
travis_wait 30 make e2e
30+
make tc
31+
travis_wait 30 make e2e
3232
else
33-
make tu
33+
make tu
34+
make phpstan
3435
fi
3536
3637
deploy:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cs: $(CODE_SNIFFER) $(CODE_SNIFFER_FIX)
2929
PHPSTAN=vendor-bin/phpstan/vendor/bin/phpstan
3030
phpstan: ## Runs PHPStan
3131
phpstan: $(PHPSTAN)
32-
$(PHPNOGC) $(PHPSTAN) analyze src -l7
32+
$(PHPNOGC) $(PHPSTAN) analyze src -l6
3333

3434
.PHONY: build
3535
build: ## Build the PHAR

0 commit comments

Comments
 (0)