mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
9 lines
131 B
Markdown
9 lines
131 B
Markdown
|
# InvalidPropertyAssignment
|
||
|
|
||
|
Emitted when attempting to assign a property to a non-object
|
||
|
|
||
|
```php
|
||
|
$a = "foo";
|
||
|
$a->bar = "bar";
|
||
|
```
|