Back to Psalm

UndefinedThisPropertyAssignment

docs/running_psalm/issues/UndefinedThisPropertyAssignment.md

6.16.1230 B
Original Source

UndefinedThisPropertyAssignment

Emitted when assigning a property on an object in one of that object’s methods when no such property exists

php
<?php

class A {
    function foo() {
        $this->foo = "bar";
    }
}