mirror of
https://github.com/danog/psalm.git
synced 2024-12-14 10:17:33 +01:00
12 lines
181 B
Markdown
12 lines
181 B
Markdown
# UndefinedPropertyAssignment
|
||
|
||
Emitted when assigning a property on an object that doesn’t have that property defined
|
||
|
||
```php
|
||
<?php
|
||
|
||
class A {}
|
||
$a = new A();
|
||
$a->foo = "bar";
|
||
```
|