Last Updated: February 25, 2016
·
356
· darkliquid

Linting changed PHP in svn

If for some reason you aren't using CI and are using svn, I knocked up a quick command for checking my PHP code is free of syntax errors. You can slap this in a pre-commit hook or run it manually.

svn st | grep '\.php$' | awk '{ print $NF }' | sort | xargs -n1 php -l