Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 199 Bytes

MixedPropertyAssignment.md

File metadata and controls

12 lines (9 loc) · 199 Bytes

MixedPropertyAssignment

Emitted when assigning a property to a value for which Psalm cannot infer a type

<?php

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