1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/docs/running_psalm/issues/InvalidPropertyAssignment.md

9 lines
131 B
Markdown
Raw Normal View History

2020-03-19 17:32:49 +01:00
# InvalidPropertyAssignment
Emitted when attempting to assign a property to a non-object
```php
$a = "foo";
$a->bar = "bar";
```