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 one of the projects that I have been working for a while, there are some legacy custom dump functions created and used frequently by the team. A sample function is;
function pre_dump( $var ) { echo '<pre>'; var_dump( $var ); echo '</pre>'; }
The check tool can not find the usage of such kind of functions. A sample usage might be;
In one of the projects that I have been working for a while, there are some legacy custom dump functions created and used frequently by the team. A sample function is;
function pre_dump( $var ) { echo '<pre>'; var_dump( $var ); echo '</pre>'; }
The check tool can not find the usage of such kind of functions. A sample usage might be;
$ ./vendor/bin/var-dump-check --no-colors --tracy --custom-function pre_dump,echo_dump .
The text was updated successfully, but these errors were encountered: