*/ private array $macros = []; public function __construct(Environment $env) { parent::__construct($env); $this->source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ ]; } protected function doDisplay(array $context, array $blocks = []): iterable { $macros = $this->macros; // line 1 yield "

Mon Blog | Admin

"; yield from []; } /** * @codeCoverageIgnore */ public function getTemplateName(): string { return "partials/_header.twig"; } /** * @codeCoverageIgnore */ public function getDebugInfo(): array { return array ( 42 => 1,); } public function getSourceContext(): Source { return new Source("", "partials/_header.twig", "/home/julien/Documents/Git/julien/blog-slim/views/partials/_header.twig"); } }