Skip to content

UndefinedClass

A reference is made to a class, interface, or trait that does not exist.

<?php
$obj = new PaymentGateway(); // class not found

Add the missing use statement, check the namespace, or define the class.