MIR0009
UndefinedTrait
A trait is used that does not exist in the codebase or stubs.
Example
Section titled “Example”<?phpclass Foo { use Loggable; // trait not defined anywhere}How to fix
Section titled “How to fix”Define the trait, add the missing use import, or fix the spelling.