From 3dc5a2040322537346ec988304fb63c8524a87a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rio=20Lucas?= Date: Wed, 18 Dec 2024 06:37:52 -0300 Subject: [PATCH] PHPAY-24-phpstan-9: feat: refactor arch phpay class --- .husky/pre-commit | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.husky/pre-commit b/.husky/pre-commit index 6ecdc73..29a0027 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -22,10 +22,12 @@ echo "=============================================" pint_output=$(./vendor/bin/phpstan analyse -l 9 src tests 2>&1) if [ $? -ne 0 ]; then - echo "PHPStan tests failed. Please fix the issues before pushing." + echo "PHPStan tests failed. Please fix the issues before commit." exit 1 fi echo "🟢 PHPStan Ok!" -echo "\n" \ No newline at end of file +echo "\n" + +