mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
185 B
185 B
MixedPropertyFetch
Emitted when retrieving a property on a value for which Psalm cannot infer a type
/** @param mixed $a */
function foo($a) : void {
echo $a->foo;
}