- Add multi-invoice payment support (link one bank transaction to multiple invoices) - Add payment unlinking feature to correct wrong matches - Show linked payments, invoices and bank entries in transaction detail view - Allow linking already paid invoices to bank transactions - Update README with new features - Add CHANGELOG.md Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
31 lines
560 B
Bash
Executable file
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
|