/** * {@inheritdoc} */ protected function render($template, array $variables = [], array $globals = []) { if (!isset($variables['context'])) { $variables = ['context' => $variables]; } return parent::render($template, $variables, $globals); }
public function connect(Application $app) { $c = parent::connect($app); $c->value(Zone::KEY, Zone::ASYNC); $c->before([$this, 'before']); return $c; }
/** * {@inheritdoc} */ protected function render($template, array $context = [], array $globals = []) { if (!isset($context['context'])) { $context = ['context' => $context]; } return parent::render($template, $context, $globals); }
public function connect(Application $app) { $this->callbackResolver = $app['callback_resolver']; return parent::connect($app); }