Fix bug when renaming tables with config storage enabled
[phpmyadmin.git] / test / ci-phplint
blob5e23620edbf631a325729f275d4f6669a9ac34bc
1 #!/bin/sh
3 FILES=`find . -name '*.php' -not -path './vendor/*'`
5 for FILE in $FILES ; do
6 if [ -f $FILE ] ; then
7 php -l $FILE
8 fi
9 done