suppress PHP Parse errors in PHP < 7.0 in dependency of phpunit: phpspec/prophecy

This commit is contained in:
Ralf Becker 2016-12-08 16:01:55 +01:00
parent 9fe73b20b3
commit 9be947e49b

View File

@ -23,6 +23,8 @@ find ${@-.} -name '*.php' -exec php -l {} \; 2>&1 | \
grep -v 'vendor/composer/autoload_static.php' | \
# exclude vendor/phpunit it shows many PHP Parse errors in PHP < 7.0
grep -v 'vendor/phpunit' | \
# suppress PHP Parse errors in PHP < 7.0 in dependency of phpunit: phpspec/prophecy
grep -v 'vendor/phpspec/prophecy' | \
# phpFreeChat does not work with PHP7
grep -v 'phpfreechat/phpfreechat/' | \
perl -pe 'END { exit $status } $status=1 if /^(PHP Fatal|(PHP )?Parse error)/;' > /dev/null