From 49b855f7fd36e2dfdcbe8497facc549a73647de4 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 31 Jul 2020 19:28:08 +0200 Subject: [PATCH] Not raw, echo more. --- .ci/phpstan.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.ci/phpstan.sh b/.ci/phpstan.sh index a75e5d2c1e..d62b425f00 100755 --- a/.ci/phpstan.sh +++ b/.ci/phpstan.sh @@ -1,10 +1,11 @@ #!/usr/bin/env bash # Install composer packages -composer install --no-suggest --no-scripts --no-ansi &> /dev/null +composer install --no-suggest --no-scripts --no-ansi + # Do static code analysis. -./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress --error-format=raw > phpstan.txt +./vendor/bin/phpstan analyse -c .ci/phpstan.neon --no-progress > phpstan.txt cat phpstan.txt