<?php declare(strict_types=1); class Test implements \IteratorAggregate { public function getIterator(){} } function test(iterable $it){ var_dump($it); } test((new Test)); test([1,2,3]);
You have javascript disabled. You will not be able to edit any code.