Skip to content

MIR0009

UndefinedTrait

A trait is used that does not exist in the codebase or stubs.

<?php
class Foo {
use Loggable; // trait not defined anywhere
}

Define the trait, add the missing use import, or fix the spelling.