mirror of
https://github.com/danog/psalm.git
synced 2024-12-12 09:19:40 +01:00
18 lines
245 B
Markdown
18 lines
245 B
Markdown
# UndefinedMagicMethod
|
||
|
||
Emitted when calling a magic method that doesn’t exist
|
||
|
||
```php
|
||
<?php
|
||
|
||
/**
|
||
* @method bar():string
|
||
*/
|
||
class A {
|
||
public function __call(string $name, array $args) {
|
||
return "cool";
|
||
}
|
||
}
|
||
(new A)->foo();
|
||
```
|