Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 167 Bytes

UndefinedInterfaceMethod.md

File metadata and controls

13 lines (9 loc) · 167 Bytes

UndefinedInterfaceMethod

Emitted when calling a method that does not exist on an interface

<?php

interface I {}

function foo(I $i) {
    $i->bar();
}