OpenXE/www/plugins/fints-hbci-php/vendor/mschindler83/fints-hbci-php/phplint.sh
2021-05-21 08:49:41 +02:00

32 lines
560 B
Bash

#!/bin/bash
error=false
while test $# -gt 0; do
current=$1
shift
if [ ! -d $current ] && [ ! -f $current ] ; then
echo "Invalid directory or file: $current"
error=true
continue
fi
for file in `find $current -type f -name "*.php"` ; do
RESULTS=`php -l $file`
if [ "$RESULTS" != "No syntax errors detected in $file" ] ; then
echo $RESULTS
error=true
fi
done
done
if [ "$error" = true ] ; then
exit 1
else
echo No syntax errors detected.
exit 0
fi