From 3ebc3d677f5f04365a9251b4dba9afffee18eb16 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sun, 7 Aug 2016 17:22:22 +0200 Subject: [PATCH] trying to fix hhvm systax check, but using same parameters as (working) 14.2 check --- doc/php_syntax_check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/php_syntax_check.sh b/doc/php_syntax_check.sh index f868353302..8acd1bdfaf 100755 --- a/doc/php_syntax_check.sh +++ b/doc/php_syntax_check.sh @@ -9,7 +9,7 @@ cd `dirname $0` cd .. -find ${@-.} -name '*.php' -exec php -d hhvm.jit=0 -l {} \; 2>&1 | \ +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