MixedPropertyAssignment

March 20, 2020 ยท View on GitHub

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";
}