Created
September 25, 2015 22:41
-
-
Save funnylookinhat/d18ad363f8c9e117c6dd to your computer and use it in GitHub Desktop.
Quick and easy linter for a directory of PHP.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Add it to your $PATH for extra fun! | |
for FILE in $(find ./* | grep ".php"); do php -l "$FILE"; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment