model = $model; $this->view = $view; } /** * * Get the model * * @author Finn Reißmann * @since 3.0 * @return Model model */ public function get_model (){ return $this->model; } /** * * Get the view * * @author Finn Reißmann * @since 3.0 * @return View view */ public function get_view (){ return $this->view; } /** * * Run the controller * * @author Finn Reißmann * @since 3.0 * @abstract */ public abstract function run (); /** * * Execute the actions * * @author Finn Reißmann * @since 3.0 * @abstract */ public abstract function action(); } ?>