mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 02:27:59 +01:00
11 lines
190 B
Markdown
11 lines
190 B
Markdown
# PossiblyInvalidFunctionCall
|
|
|
|
Emitted when trying to call a function on a value that may not be callable
|
|
|
|
```php
|
|
<?php
|
|
|
|
$a = rand(0, 1) ? 5 : function() : int { return 5; };
|
|
$b = $a();
|
|
```
|