Skip to content

Instantly share code, notes, and snippets.

@jules0x
Created October 21, 2021 21:27
Show Gist options
  • Save jules0x/b5235590d308394bf541928b3b7dd66e to your computer and use it in GitHub Desktop.
Save jules0x/b5235590d308394bf541928b3b7dd66e to your computer and use it in GitHub Desktop.
#!/bin/sh
PROJECT=`php -r "echo dirname(dirname(dirname(realpath('$0'))));"`
STAGED_FILES_CMD=`git diff --cached --name-only --diff-filter=ACMR HEAD | grep \.php`
# Determine if a file list is passed
if [ "$#" -eq 1 ]
then
oIFS=$IFS
IFS='
'
SFILES="$1"
IFS=$oIFS
fi
SFILES=${SFILES:-$STAGED_FILES_CMD}
echo "Checking PHP Lint (php -l) ..."
for FILE in $SFILES
do
php -l -d display_errors=1 $PROJECT/$FILE
if [ $? != 0 ]
then
echo "Fix the error before commit."
exit 1
fi
FILES="$FILES $PROJECT/$FILE"
done
if [ "$FILES" != "" ]
then
echo "Running Code Sniffer (phpcs) ..."
./vendor/bin/phpcs --colors -n -p $FILES
if [ $? != 0 ]
then
echo "Fix the error before commit."
echo "You can do this automatically with"
echo "./vendor/bin/phpcbf [FILE]"
exit 1
fi
fi
exit $?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment