Iterable

Iterable is a pseudo-type, which accepts any array or object implementing the Traversable interface.

<?php

function foo(iterable $iterable) {
    foreach ($iterable as $value) {
        // ...
    }
}

?>

Documentation

Related : Traversable, Array

Added in PHP 7.1