Open TysonAndre opened 7 years ago
Observed: function test(int ...$args) {} will generate single check that is_int($args). Expected: Will loop over elements of $args and assert is_int($elem)
function test(int ...$args) {}
is_int($args)
Observed:
function test(int ...$args) {}
will generate single check thatis_int($args)
. Expected: Will loop over elements of $args and assert is_int($elem)