Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ci-phplint « test - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e23620edbf631a325729f275d4f6669a9ac34bc (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

FILES=`find . -name '*.php' -not -path './vendor/*'`

for FILE in $FILES ; do
    if [ -f $FILE ] ; then
        php -l $FILE
    fi
done