// +---------------------------------------------------------------------- // $Id$ namespace Think\View\Driver; use Think\Template; class Think { private $template = null; public function __construct($config=[]){ $this->template = new Template($config); } public function fetch($template,$data=[]){ $this->template->display($template,$data); } }