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

get() public method

Get the evaluated contents of the 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' => 'path', 'content' => $path);
    }
PhpEngine