suppress PHP Deprecated in vendor, as they need to be solved by the vendor

This commit is contained in:
Ralf Becker 2016-07-10 11:49:47 +02:00
parent 4fdc940e47
commit f47be85acf

View File

@ -12,6 +12,8 @@ cd ..
find ${@-.} -name '*.php' -exec php -l {} \; 2>&1 | \
# only show errors and PHP Deprecated, no success messages
egrep '^(PHP|Parse error)' | \
# suppress PHP Deprecated in vendor, as they need to be solved by the vendor
egrep -v '^PHP Deprecated.*/vendor/' | \
# output everything to stderr
tee /dev/fd/2 | \
# exclude several known problems, to be able to find new ones