Phlyty\View\MustacheView::render PHP Method

render() public method

Proxies to parent object, but provides defaults for $viewModel and $partials.
public render ( string $template, mixed $viewModel = [], mixed $partials = null ) : string
$template string Either a template string or a template file in the template path
$viewModel mixed An array or object with items to inject in the template
$partials mixed A list of partial names/template pairs for rendering as partials
return string
    public function render($template, $viewModel = [], $partials = null)
    {
        return parent::render($template, $viewModel, $partials);
    }
MustacheView