I would like to block debug functions var_dump, print_r, etc...
from being commited to the repo so that QA can go over things and not report bugs like "There is a huge block of text on all of the pages!!"
I have tried regex (not a great idea... presumably).
I have also tried token_get_all
but for some reason, it returns T_STRING
for each of the debug functions, which I guess would work, but it seems odd...
Is there a third better way?