From 156ecd9bd893cd8657ee2e954de80caae0031354 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 27 Jan 2020 09:31:27 +0000 Subject: [PATCH] travis: use phpstan 0.12.8 --- tests/travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/travis.sh b/tests/travis.sh index 6b1c214ca..12e15063b 100755 --- a/tests/travis.sh +++ b/tests/travis.sh @@ -14,7 +14,7 @@ while getopts "p:t:" OPTION 2> /dev/null; do esac done -[ ! -f phpstan.phar ] && echo "Downloading PHPStan..." && curl -sSLO https://github.com/phpstan/phpstan/releases/download/0.12.7/phpstan.phar +[ ! -f phpstan.phar ] && echo "Downloading PHPStan..." && curl -sSLO https://github.com/phpstan/phpstan/releases/download/0.12.8/phpstan.phar "$PHP_BINARY" phpstan.phar analyze --no-progress --memory-limit=2G || exit 1 echo "PHPStan scan succeeded"