21 lines
506 B
PHP
Executable File
21 lines
506 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use CodeIgniter\HTTP\IncomingRequest;
|
|
use CodeIgniter\HTTP\RequestInterface;
|
|
use CodeIgniter\HTTP\ResponseInterface;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
use App\Controllers\PublicController;
|
|
|
|
//This is a controller act like base controller for business logics which are required
|
|
// authendication and authrizations also config the routes as per requirement in routes.php
|
|
class AdminController extends BaseController
|
|
{
|
|
public function __construct()
|
|
{
|
|
|
|
}
|
|
}
|