For example: i have a php file that contains the following code
namespace Res\Helper
use Engine\Helper;
class MyClass extends Helper
{
   public function __construct()
   {}
   public function testme()
   {
      return 'WORKS';
   }
}When i run in cmd php MyClass.php it says that the class Engine is not found!