mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
245 B
245 B
UndefinedMagicMethod
Emitted when calling a magic method that doesn’t exist
<?php
/**
* @method bar():string
*/
class A {
public function __call(string $name, array $args) {
return "cool";
}
}
(new A)->foo();