PHP - Functions
Given this function:
Which call will cause a TypeError?
function process(array $data, int $limit = 10) {
return array_slice($data, 0, $limit);
}Which call will cause a TypeError?
