From 6184966594d2264429cc0c6d6b134a940d16682d Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 28 Oct 2019 21:23:10 +0100 Subject: [PATCH] fix return type --- Hooks/tests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Hooks/tests.sh b/Hooks/tests.sh index 98b4826..51293f7 100755 --- a/Hooks/tests.sh +++ b/Hooks/tests.sh @@ -4,12 +4,12 @@ isPhanTestSuccessful() { # export PHAN_DISABLE_XDEBUG_WARN="1" # php -d memory_limit=4G ${rootpath}/vendor/bin/phan -k ${rootpath}/Build/Config/phan.php #--minimum-severity=0 --color -f "$1" >&2 # if [ $? -ne 0 ]; then - echo 0 - return 0 +# echo 0 +# return 0 # fi # -# echo 1 -# return 1 + echo 1 + return 1 } isPhpStanTestSuccessful() {