Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 192 Bytes

MixedPropertyFetch.md

File metadata and controls

12 lines (9 loc) · 192 Bytes

MixedPropertyFetch

Emitted when retrieving a property on a value for which Psalm cannot infer a type

<?php

/** @param mixed $a */
function foo($a) : void {
    echo $a->foo;
}