repo.or.cz
/
phpmyadmin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update po files
[phpmyadmin.git]
/
test
/
ci-phplint
blob
5e23620edbf631a325729f275d4f6669a9ac34bc
1
#!/bin/sh
2
3
FILES
=
`find . -name '*.php' -not -path './vendor/*'`
4
5
for
FILE
in
$FILES
;
do
6
if
[
-f
$FILE
] ;
then
7
php
-l
$FILE
8
fi
9
done