ice framework documentation ice doc v1.10.1
Class Ice Mvc View Engine

EngineInterface

    
namespace Ice\Mvc\View\Engine;

use Ice\Di;
use Ice\Mvc\View\ViewInterface;

/**
 * Engine interface.
 *
 * @package     Ice/View
 * @category    Interface
 * @author      Ice Team
 * @copyright   (c) 2014-2023 Ice Team
 * @license     http://iceframework.org/license
 */
interface EngineInterface
{
	public function __construct( view,  di = null);

	public function render(string! path, array data = []);
}