Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 345 Bytes

PossiblyInvalidPropertyFetch.md

File metadata and controls

20 lines (15 loc) · 345 Bytes

PossiblyInvalidPropertyFetch

Emitted when trying to fetch a property on a value that may not be an object or may be an object that does not have the desired property.

<?php

class A {
    /** @var ?string */
    public $bar;
}

/** @return A|int */
function foo() {
    return rand(0, 1) ? new A : 5;
}

$a = foo();
echo $a->bar;