41 lines
920 B
PHP
41 lines
920 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use CodeIgniter\HTTP\ResponseInterface;
|
|
|
|
class Employment extends BaseController
|
|
{
|
|
public function login() :ResponseInterface
|
|
{
|
|
$row =[];
|
|
$data = [
|
|
'call_return' => '100',
|
|
'verify_uid'=>'ce00b4c9-7a46-4176-aa5a-0f6d83740dbc',
|
|
'dev_status'=>'FAKE_RESULT_NOT_IMPLIMENTED_FOR_REAL',
|
|
'records' => $row
|
|
];
|
|
return $this->respond($data, 200);
|
|
}
|
|
|
|
public function verifyOTP() :ResponseInterface
|
|
{
|
|
$row =[];
|
|
$data = [
|
|
'call_return' => '100',
|
|
'records' => $row
|
|
];
|
|
return $this->respond($data, 200);
|
|
}
|
|
|
|
public function loadApplication() :ResponseInterface
|
|
{
|
|
$row =[];
|
|
$data = [
|
|
'call_return' => '100',
|
|
'records' => $row
|
|
];
|
|
return $this->respond($data, 200);
|
|
}
|
|
|
|
} |