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 .