WellCommerce\Bundle\CoreBundle\Helper\Templating\TemplatingHelper::renderControllerResponse PHP Method

renderControllerResponse() public method

public renderControllerResponse ( WellCommerce\Bundle\CoreBundle\Controller\ControllerInterface $controller, string $templateName, array $parameters = [] ) : Response
$controller WellCommerce\Bundle\CoreBundle\Controller\ControllerInterface
$templateName string
$parameters array
return Symfony\Component\HttpFoundation\Response
    public function renderControllerResponse(ControllerInterface $controller, string $templateName, array $parameters = []) : Response
    {
        $template = $this->resolveControllerTemplate($controller, $templateName);
        return $this->engine->renderResponse($template, $parameters);
    }