Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 171 Bytes

PossiblyFalseIterator.md

File metadata and controls

10 lines (7 loc) · 171 Bytes

PossiblyFalseIterator

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

<?php

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