Files
FHC-Core/application/core/API_Controller.php
T
Paminger 9689fd5a01 PHPCI
2016-03-20 12:53:17 +01:00

18 lines
433 B
PHP

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
// This can be removed if you use __autoload() in config.php OR use Modular Extensions
//require APPPATH . '/libraries/REST_Controller.php';
class API_Controller extends REST_Controller
{
function __construct()
{
parent::__construct();
//$this->load->library('session'); -> autoload
//$this->load->library('database'); -> autoload
}
}