Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 200 Bytes

PossiblyNullReference.md

File metadata and controls

14 lines (11 loc) · 200 Bytes

PossiblyNullReference

Emitted when trying to call a method on a possibly null value

<?php

class A {
    public function bar() : void {}
}
function foo(?A $a) : void {
    $a->bar();
}