If I have a function like this:
<?php
function foo($used, $maybe_unused = '') { ... }
Alt-F7
will find ALL calls to foo(). However, I want to find out if any of the calls include the second parameter or not. If none of the calls include the second parameter, I'll know it's safe to remove. Without looking through the entire list of results, I want to know if there are any calls like this:
foo('first', 'second');
or, if they are all like this:
foo('first');
and therefore I can remove the second parameter.