PHP - Functions
You have a function declared as:
Which of the following calls is valid?
function transform(array $data, callable $callback) {
return array_map($callback, $data);
}Which of the following calls is valid?
