TOP-framework/framework/library/template/ifs/TemplateIfs.php

24 lines
375 B
PHP

<?php
namespace framework\library\template\ifs;
/**
* 模板接口
*
* @author topnuomi 2018年11月22日
*/
interface TemplateIfs {
public function run();
public function cache($status);
/**
* 处理模板
* @param $file
* @param $param
* @param $cache
* @return mixed
*/
public function fetch($file, $param, $cache);
}