# UndefinedMethod
Emitted when calling a method that doesn’t exist
```php
<?php
class A {}
A::foo();
```