Back to Psalm

UndefinedInterfaceMethod

docs/running_psalm/issues/UndefinedInterfaceMethod.md

6.16.1166 B
Original Source

UndefinedInterfaceMethod

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

php
<?php

interface I {}

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