Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 169 Bytes

PossiblyNullIterator.md

File metadata and controls

11 lines (8 loc) · 169 Bytes

PossiblyNullIterator

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

<?php

function foo(?array $arr) : void {
    foreach ($arr as $a) {}
}