FOF30\View\Engine\AbstractEngine::get PHP Method

get() public method

Get the include path for a parsed view template
public get ( string $path, array $forceParams = [] ) : array
$path string The path to the view template
$forceParams array Any additional information to pass to the view template engine
return array Content evaluation information
    public function get($path, array $forceParams = array())
    {
        return array('type' => 'raw', 'content' => '');
    }
AbstractEngine