Skip to content

Instantly share code, notes, and snippets.

@madeindjs
Created August 9, 2017 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madeindjs/ad5139fef059460f1a60582f28477c50 to your computer and use it in GitHub Desktop.
Save madeindjs/ad5139fef059460f1a60582f28477c50 to your computer and use it in GitHub Desktop.
Check git staged PHP files errors
#!/bin/bash
files=`git diff --name-only | grep -E '.php$' `
for file in $files; do
php -l $file > /dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment