File: /var/www/apklausos/tmp/runtime/twig_cache/bf/bff94d4ab3c3337e8c8a4099ce98c028.php
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\CoreExtension;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* /survey/questions/answer/arrays/10point/rows/cells/header_information.twig */
class __TwigTemplate_7222fda8870fa545b06159725257c1dd extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
$this->sandbox = $this->extensions[SandboxExtension::class];
$this->checkSecurity();
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
// line 8
yield "
";
// line 9
yield doRender("/survey/questions/answer/global/table/cell/head_information", ["class" => $this->sandbox->ensureToStringAllowed(($context["class"] ?? null), 9, $this->source), "content" => $this->sandbox->ensureToStringAllowed(($context["content"] ?? null), 9, $this->source)]);
return; yield '';
}
/**
* @codeCoverageIgnore
*/
public function getTemplateName()
{
return "/survey/questions/answer/arrays/10point/rows/cells/header_information.twig";
}
/**
* @codeCoverageIgnore
*/
public function isTraitable()
{
return false;
}
/**
* @codeCoverageIgnore
*/
public function getDebugInfo()
{
return array ( 43 => 9, 40 => 8,);
}
public function getSourceContext()
{
return new Source("", "/survey/questions/answer/arrays/10point/rows/cells/header_information.twig", "/var/www/apklausos/application/views/survey/questions/answer/arrays/10point/rows/cells/header_information.twig");
}
public function checkSecurity()
{
static $tags = array();
static $filters = array();
static $functions = array("doRender" => 9);
try {
$this->sandbox->checkSecurity(
[],
[],
['doRender'],
$this->source
);
} catch (SecurityError $e) {
$e->setSourceContext($this->source);
if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
$e->setTemplateLine($tags[$e->getTagName()]);
} elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
$e->setTemplateLine($filters[$e->getFilterName()]);
} elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
$e->setTemplateLine($functions[$e->getFunctionName()]);
}
throw $e;
}
}
}