uri = URI::instance(); // Input should always be available $this->input = Input::instance(); } /** * Handles methods that do not exist. * * @param string method name * @param array arguments * @return void */ public function __call($method, $args) { // Default to showing a 404 page Event::run('system.404'); } } // End Controller Class