Skip to content

Instantly share code, notes, and snippets.

@mpmont
Created August 21, 2015 13:51
Show Gist options
  • Save mpmont/ea5207eb35652f13b0ce to your computer and use it in GitHub Desktop.
Save mpmont/ea5207eb35652f13b0ce to your computer and use it in GitHub Desktop.
<?php
class MY_Controller extends CI_Controller{
public function __construct(){
parent::__construct();
}
}
class ADMIN_Controller extends CI_Controller {
public function __construct() {
parent::__construct();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment