source = $this->getSourceContext(); $this->blocks = [ 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "layout.html"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; $this->parent = $this->loadTemplate("layout.html", "logs.html", 1); yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 4 yield "

Logs

"; // line 18 yield $this->extensions['MailPoet\Twig\I18n']->localize(["pageTitle" => $this->extensions['MailPoet\Twig\I18n']->translate("Logs")]); // line 20 yield " "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "logs.html"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 76 => 20, 74 => 18, 69 => 15, 65 => 13, 60 => 12, 51 => 4, 47 => 3, 36 => 1,); } public function getSourceContext() { return new Source("", "logs.html", "/home/circleci/mailpoet/mailpoet/views/logs.html"); } }