Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 132 Bytes

InvalidIterator.md

File metadata and controls

10 lines (7 loc) · 132 Bytes

InvalidIterator

Emitted when trying to iterate over a value that's not iterable

<?php

$a = 5;
foreach ($a as $b) {}