mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
285 B
285 B
PossiblyNullPropertyAssignmentValue
Emitted when trying to assign a value that may be null to a property that only takes non-null values.
class A {
/** @var string */
public $foo = "bar";
}
function assignToA(?string $s) {
$a = new A();
$a->foo = $s;
}