mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 18:48:03 +01:00
12 lines
224 B
Markdown
12 lines
224 B
Markdown
# UndefinedThisPropertyAssignment
|
||
|
||
Emitted when assigning a property on an object in one of that object’s methods when no such property exists
|
||
|
||
```php
|
||
class A {
|
||
function foo() {
|
||
$this->foo = "bar";
|
||
}
|
||
}
|
||
```
|