source = $this->getSourceContext(); $this->blocks = [ 'container' => [$this, 'block_container'], ]; } 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", "automation/editor.html", 1); yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_container($context, array $blocks = []) { $macros = $this->macros; // line 4 yield "
"; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "automation/editor.html"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 80 => 13, 76 => 12, 72 => 11, 68 => 10, 64 => 9, 60 => 8, 56 => 7, 51 => 4, 47 => 3, 36 => 1,); } public function getSourceContext() { return new Source("", "automation/editor.html", "/home/circleci/mailpoet/mailpoet/views/automation/editor.html"); } }