Skip to content

Instantly share code, notes, and snippets.

@hihebark
Created September 11, 2024 10:39
Show Gist options
  • Select an option

  • Save hihebark/b455d5041a9203e320ae556ab32d01e6 to your computer and use it in GitHub Desktop.

Select an option

Save hihebark/b455d5041a9203e320ae556ab32d01e6 to your computer and use it in GitHub Desktop.
#!/bin/sh
RED='\e[1;41m'
GREEN='\e[1;42m'
NC='\033[0m'
echo "Checking PHPStan..."
phpstan analyse --memory-limit=256M --level 0 app --quiet
RESULT=$?
if [ $RESULT -ne 0 ]; then
echo "${RED}╮(╯ _╰ )╭ Something wrong happened${NC}"
exit 1
fi
echo "${GREEN}¯\\_(ツ)_/¯ All Gooooooooood${NC}"
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment