mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 10:38:49 +01:00
9 lines
108 B
Markdown
9 lines
108 B
Markdown
|
# NullFunctionCall
|
||
|
|
||
|
Emitted when trying to use `null` as a `callable`
|
||
|
|
||
|
```php
|
||
|
$arr = null;
|
||
|
echo $arr();
|
||
|
```
|