Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 292 Bytes

PossiblyNullPropertyAssignmentValue.md

File metadata and controls

17 lines (13 loc) · 292 Bytes

PossiblyNullPropertyAssignmentValue

Emitted when trying to assign a value that may be null to a property that only takes non-null values.

<?php

class A {
    /** @var string */
    public $foo = "bar";
}

function assignToA(?string $s) {
    $a = new A();
    $a->foo = $s;
}