Permalink
Switch branches/tags
Find file
Fetching contributors…
Cannot retrieve contributors at this time
19 lines (15 sloc) 303 Bytes
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class MY_Model extends CI_Model
{
function __construct()
{
parent::__construct();
}
}
class SB_Model extends MY_Model
{
function __construct()
{
parent::__construct();
}
}