You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some cases the PHP linting performed by vip-go-ci may return no results even though there is a syntax error in a file. This can happen if PHP outputs extra data at the beginning of output, for example warnings like this:
PHP Warning: Missing arginfo for svn_checkout() in Unknown on line 0
PHP Warning: Missing arginfo for svn_cat() in Unknown on line 0
PHP Warning: Missing arginfo for svn_ls() in Unknown on line 0
This is because the PHP linting process will search for Parse error at the very beginning, at position 0. See code here. We should be looking for Parse error anywhere in the output.
The text was updated successfully, but these errors were encountered:
In some cases the PHP linting performed by
vip-go-ci
may return no results even though there is a syntax error in a file. This can happen if PHP outputs extra data at the beginning of output, for example warnings like this:This is because the PHP linting process will search for
Parse error
at the very beginning, at position0
. See code here. We should be looking forParse error
anywhere in the output.The text was updated successfully, but these errors were encountered: