dolibarr.bankimport/vendor/nemiah/php-fints/phplint.sh
2026-02-13 18:30:28 +01:00

31 lines
560 B
Bash
Executable file

#!/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