mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
11 lines
121 B
Markdown
11 lines
121 B
Markdown
# NullPropertyAssignment
|
|
|
|
Emitted when trying to set a property on `null`
|
|
|
|
```php
|
|
<?php
|
|
|
|
$a = null;
|
|
$a->foo = "bar";
|
|
```
|