src/View/Renderer.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 *
 */

namespace Mvc5\View;

final class Renderer
{
    /**
     * @var View
     */
    protected View $view;

    /**
     * @param View $view
     */
    function __construct(View $view)
    {
        $this->view = $view;
    }

    /**
     * @param array|string|\Mvc5\Template\TemplateModel $model
     * @param array $vars
     * @return string
     */
    function __invoke($model, array $vars = []) : string
    {
        return $this->view->render($model, $vars);
    }
}