var/cache/dev/twig/b0/b057ab59180f392eb338be552997ec7e0a52fb0e43fd073fd613375228f6fe6b.php line 53

Open in your IDE?
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Extension\CoreExtension;
  6. use Twig\Extension\SandboxExtension;
  7. use Twig\Markup;
  8. use Twig\Sandbox\SecurityError;
  9. use Twig\Sandbox\SecurityNotAllowedTagError;
  10. use Twig\Sandbox\SecurityNotAllowedFilterError;
  11. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  12. use Twig\Source;
  13. use Twig\Template;
  14. use Twig\TemplateWrapper;
  15. /* app/partials/header/bottom.html.twig */
  16. class __TwigTemplate_f85ba4255fbb19709e5527b640cb652b2846deec86076465fd9dd42f23717789 extends Template
  17. {
  18.     private Source $source;
  19.     /**
  20.      * @var array<string, Template>
  21.      */
  22.     private array $macros = [];
  23.     public function __construct(Environment $env)
  24.     {
  25.         parent::__construct($env);
  26.         $this->source $this->getSourceContext();
  27.         $this->parent false;
  28.         $this->blocks = [
  29.         ];
  30.         $this->sandbox $this->extensions[SandboxExtension::class];
  31.         $this->checkSecurity();
  32.     }
  33.     protected function doDisplay(array $context, array $blocks = []): iterable
  34.     {
  35.         $macros $this->macros;
  36.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  37.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->enter($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""app/partials/header/bottom.html.twig"));
  38.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02 $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  39.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->enter($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""app/partials/header/bottom.html.twig"));
  40.         // line 1
  41.         yield "<div class=\"bg-blue h-[51px]\">
  42.     ";
  43.         // line 2
  44.         yield from $this->loadTemplate("app/partials/navigation.html.twig""app/partials/header/bottom.html.twig"2)->unwrap()->yield($context);
  45.         // line 3
  46.         yield "</div>";
  47.         
  48.         $__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e->leave($__internal_085b0142806202599c7fe3b329164a92397d8978207a37e79d70b8c52599e33e_prof);
  49.         
  50.         $__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02->leave($__internal_319393461309892924ff6e74d6d6e64287df64b63545b994e100d4ab223aed02_prof);
  51.         yield from [];
  52.     }
  53.     /**
  54.      * @codeCoverageIgnore
  55.      */
  56.     public function getTemplateName(): string
  57.     {
  58.         return "app/partials/header/bottom.html.twig";
  59.     }
  60.     /**
  61.      * @codeCoverageIgnore
  62.      */
  63.     public function isTraitable(): bool
  64.     {
  65.         return false;
  66.     }
  67.     /**
  68.      * @codeCoverageIgnore
  69.      */
  70.     public function getDebugInfo(): array
  71.     {
  72.         return array (  55 => 3,  53 => 2,  50 => 1,);
  73.     }
  74.     public function getSourceContext(): Source
  75.     {
  76.         return new Source("<div class=\"bg-blue h-[51px]\">
  77.     {% include 'app/partials/navigation.html.twig' %}
  78. </div>""app/partials/header/bottom.html.twig""/home/forge/testing.coolworld.ptchr.dev/templates/app/partials/header/bottom.html.twig");
  79.     }
  80.     
  81.     public function checkSecurity()
  82.     {
  83.         static $tags = ["include" => 2];
  84.         static $filters = [];
  85.         static $functions = [];
  86.         try {
  87.             $this->sandbox->checkSecurity(
  88.                 ['include'],
  89.                 [],
  90.                 [],
  91.                 $this->source
  92.             );
  93.         } catch (SecurityError $e) {
  94.             $e->setSourceContext($this->source);
  95.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  96.                 $e->setTemplateLine($tags[$e->getTagName()]);
  97.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  98.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  99.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  100.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  101.             }
  102.             throw $e;
  103.         }
  104.     }
  105. }