render() защищенный Метод

Renders a template
protected render ( string $template, array $context = [], array $globals = [] ) : TemplateResponse
$template string Template name
$context array Context variables
$globals array Global variables
Результат Bolt\Response\TemplateResponse
Пример #1
0
 /**
  * {@inheritdoc}
  */
 protected function render($template, array $variables = [], array $globals = [])
 {
     if (!isset($variables['context'])) {
         $variables = ['context' => $variables];
     }
     return parent::render($template, $variables, $globals);
 }
Пример #2
0
 /**
  * {@inheritdoc}
  */
 protected function render($template, array $context = [], array $globals = [])
 {
     if (!isset($context['context'])) {
         $context = ['context' => $context];
     }
     return parent::render($template, $context, $globals);
 }