view = new View(); } // final public function setDebug($debug) { $this->_debug = $debug; } final public function getDebug() { return $this->_debug; } final public function __get($name) { return $this->view->$name; } final public function __set($name, $value) { $this->view->$name = $value; } public function render($file) { return $this->view->render($file); } } //Class