Remove unnecessary usage of xargs

This commit is contained in:
Zach Borboa
2015-02-16 16:55:14 +07:00
parent 72f7e09f57
commit d67fbd3677
+1 -1
View File
@@ -1,5 +1,5 @@
# Check syntax in php files.
find . -type "f" -iname "*.php" | xargs -L "1" php -l
find . -type "f" -iname "*.php" -exec php -l {} \;
# Run tests.
cd tests && phpunit --configuration phpunit.xml