Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 175 Bytes

PossiblyInvalidIterator.md

File metadata and controls

10 lines (7 loc) · 175 Bytes

PossiblyInvalidIterator

Emitted when trying to iterate over a value that may be invalid

<?php

$arr = rand(0, 1) ? [1, 2, 3] : "hello";
foreach ($arr as $a) {}