Is there a way to get the $value seen below so that it can be used in the var_dump?
// can't alter this function..
function test($callback) {
$callback('test');
}
// can alter this in any way so long as the above function still works..
test(function ($value) {
return $value; // how to get $value for the dump below?
});
var_dump($value); // expecting "test"