I am facing a very strange error although it seems that i have done all the requires
Error: PHP Fatal error: Class 'Login' not found
Code:
<?php
//Includes...
require_once(__DIR__ . "/base/request.abstract.php");
//Entry point...
try {
//What should i do ? the class is in the same file so what to do so php recognize it ?
echo (new Login($_REQUEST['request']))->processRequest();
} catch (Exception $e) {
echo json_encode(array('error' => $e->getMessage()));
}
//Implementation...
class Login extends RequestAbstract
{
public function processRequest()
{
}
}