/** * Loads URI, and Input into this controller. * * @return void */ public function __construct() { if (Lemon::$instance == NULL) { // Set the instance to the first controller loaded Lemon::$instance = $this; } // URI should always be available $this->uri = URI::instance(); // Input should always be available $this->input = Input::instance(); }