id : An exception has been thrown during the rendering of a template ("Failed to start the session because headers have already been sent by "/var/www/symfony-app/src/Controller/CountryController.php" at line 22.") in "base.html.twig" at line 33. (500 Internal Server Error)

Symfony Exception

RuntimeException RuntimeError

HTTP 500 Internal Server Error

An exception has been thrown during the rendering of a template ("Failed to start the session because headers have already been sent by "/var/www/symfony-app/src/Controller/CountryController.php" at line 22.") in base.html.twig at line 33.

Exceptions 2

Twig\Error\ RuntimeError

Show exception properties
Twig\Error\RuntimeError {#699
  -lineno: 33
  -rawMessage: "An exception has been thrown during the rendering of a template ("Failed to start the session because headers have already been sent by "/var/www/symfony-app/src/Controller/CountryController.php" at line 22.")."
  -source: Twig\Source {#3950
    -code: """
      {% set page = page|default('home') %}\n
      {% set title = title|default('') %}\n
      <!DOCTYPE html>\n
      <html lang="fr">\n
          <head>\n
              <meta charset="UTF-8">\n
              <title>Swim visualizer{{ title ? " - "~title : "" }}</title>\n
              <meta content="width=device-width, initial-scale=1.0" name="viewport">\n
              <meta content="Swim visualizer" name="keywords">\n
              <meta content="Swim visualizer" name="description">\n
      \n
              <link rel="stylesheet" href="{{ asset('css/styles.css') }}" type="text/css" />\n
              {% block stylesheets %}\n
              {% endblock %}\n
          </head>\n
          <body>\n
              <section id="loading-screen" style="display: none;">\n
                  <div id="loader">\n
                      <div id="textLoader">Le chargement peut être long, veuillez patienter</div>\n
                      <div id="imgLoader"><img src="{{ asset('img/swimming-man.gif') }}"></div>\n
                  </div>\n
              </section>\n
              <div class="containerPrincipal">\n
                  <div class="basket" style="display: {{ page == 'visualizer' ? 'none' : '' }}">\n
                      Basket : <span id="basketCpt">0</span>/10 nageurs<span id="spanCleanBasket" style="display: none;"> - <button onclick="Javascript: cleanBasket();">Vider</button></span><span><a href="{{ path('basket_visualizer') }}" id="aVisualizer">Voir la course</a></span>\n
                      <div id="basketMessage" style="display: none;"></div>\n
                      <div><span id="basketRace">Vide</span> - <span id="basketPoolSize">Vide</span></div>\n
                      <div id="basketDetails"></div>\n
                  </div>\n
                  <div>\n
                      {{ render(controller('App\\Controller\\PartialController::navigation')) }}\n
                  </div>\n
                  {% set saveFlashes = app.flashes %}\n
                  {% if saveFlashes|length > 0 %}\n
                  <div class="container-fluid">\n
                      <div class="row">\n
                          <div class="col-12 pt-lg-5 mt-lg-5 text-center">\n
                              {% for label, messages in saveFlashes %}\n
                                  {% for message in messages %}\n
                                      <div class="alert alert-{% if label == 'success' %}success{% else %}danger{% endif %}">\n
                                          {{ message|trans }}\n
                                      </div>\n
                                  {% endfor %}\n
                              {% endfor %}\n
                          </div>\n
                      </div>\n
                  </div>\n
                  {% endif %}\n
                  <div id="divErrorJS" style="color: red; display: none;"></div>\n
                  <!-- Navbar & Carousel End -->\n
                  <div class="container-fluid wow fadeInUp" data-wow-delay="0.1s">\n
                      <div class="container-fluid espaceHaut">\n
                          {% block body %}{% endblock %}\n
                      </div>\n
                  </div>\n
              </div>\n
          </body>\n
          <script type="text/Javascript">\n
              var urlBasketSet = '{{ path('basket_api_set') }}';\n
              var page = '{{ page }}';\n
          </script>\n
          {{ render(controller('App\\Controller\\PartialController::getBasket')) }}\n
          <script type="text/javascript" src="{{ asset('js/base.js') }}"></script>\n
          <script type="text/javascript" src="{{ asset('js/basket.js') }}"></script>\n
          {% block javascripts %}\n
          {% endblock %}\n
      </html>\n
      """
    -name: "base.html.twig"
    -path: "/var/www/symfony-app/templates/base.html.twig"
  }
  -phpFile: "/var/www/symfony-app/vendor/twig/twig/src/Template.php"
  -phpLine: 416
}
  1. <div id="basketDetails"></div>
  2. </div>
  3. <div>
  4. {{ render(controller('App\\Controller\\PartialController::navigation')) }}
  5. </div>
  6. {% set saveFlashes = app.flashes %}
  7. {% if saveFlashes|length > 0 %}
  8. <div class="container-fluid">
  9. <div class="row">
  10. <div class="col-12 pt-lg-5 mt-lg-5 text-center">
  11. {% for label, messages in saveFlashes %}
  1. $__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "country/index.html.twig"));
  3. $this->parent = $this->load("base.html.twig", 1);
  4. yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
  5. $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  6. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = []): void
  4. {
  5. foreach ($this->yield($context, $blocks) as $data) {
  6. echo $data;
  7. }
  8. }
  9. public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 373)
  1. ob_start();
  2. } else {
  3. ob_start(function () { return ''; });
  4. }
  5. try {
  6. $this->display($context);
  7. } catch (\Throwable $e) {
  8. while (ob_get_level() > $level) {
  9. ob_end_clean();
  10. }
  1. yield from $this->template->yieldBlock($name, $context);
  2. }
  3. public function render(array $context = []): string
  4. {
  5. return $this->template->render($context);
  6. }
  7. /**
  8. * @return void
  9. */
  1. * @throws SyntaxError When an error occurred during compilation
  2. * @throws RuntimeError When an error occurred during rendering
  3. */
  4. public function render($name, array $context = []): string
  5. {
  6. return $this->load($name)->render($context);
  7. }
  8. /**
  9. * Displays a template.
  10. *
  1. if (null !== $block) {
  2. return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);
  3. }
  4. return $this->container->get('twig')->render($view, $parameters);
  5. }
  6. private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
  7. {
  8. $content = $this->doRenderView($view, $block, $parameters, $method);
  1. return $this->container->get('twig')->render($view, $parameters);
  2. }
  3. private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
  4. {
  5. $content = $this->doRenderView($view, $block, $parameters, $method);
  6. $response ??= new Response();
  7. if (200 === $response->getStatusCode()) {
  8. foreach ($parameters as $v) {
  9. if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
  1. * If an invalid form is found in the list of parameters, a 422 status code is returned.
  2. * Forms found in parameters are auto-cast to form views.
  3. */
  4. protected function render(string $view, array $parameters = [], ?Response $response = null): Response
  5. {
  6. return $this->doRender($view, null, $parameters, $response, __FUNCTION__);
  7. }
  8. /**
  9. * Renders a block in a view.
  10. *
AbstractController->render('country/index.html.twig', array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC')) in src/Controller/CountryController.php (line 23)
  1. {
  2. #[Route('/country/index/{filterEgalShort}/{order}/{way}', name: 'country_index')]
  3. public function index(CountryRepository $countryRepository, Request $request, int $filterEgalShort = 0, string $order = "name", string $way = "ASC",): Response
  4. {
  5. echo "id : ", $request->getSession()->getId();
  6. return $this->render('country/index.html.twig', [
  7. 'countries' => $countryRepository->filterCountryShortNameOrderedBy($filterEgalShort == 1, $order, $way),
  8. 'filterEgalShort' => $filterEgalShort,
  9. 'order' => $order,
  10. 'way' => $way
  11. ]);
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/symfony-app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

RuntimeException

Failed to start the session because headers have already been sent by "/var/www/symfony-app/src/Controller/CountryController.php" at line 22.

  1. if (\PHP_SESSION_ACTIVE === session_status()) {
  2. throw new \RuntimeException('Failed to start the session: already started by PHP.');
  3. }
  4. if (filter_var(\ini_get('session.use_cookies'), \FILTER_VALIDATE_BOOL) && headers_sent($file, $line)) {
  5. throw new \RuntimeException(sprintf('Failed to start the session because headers have already been sent by "%s" at line %d.', $file, $line));
  6. }
  7. $sessionId = $_COOKIE[session_name()] ?? null;
  8. /*
  9. * Explanation of the session ID regular expression: `/^[a-zA-Z0-9,-]{22,250}$/`.
  1. }
  2. if (!$this->started && $this->saveHandler->isActive()) {
  3. $this->loadSession();
  4. } elseif (!$this->started) {
  5. $this->start();
  6. }
  7. return $this->bags[$name];
  8. }
  1. $this->storage->registerBag(new SessionBagProxy($bag, $this->data, $this->usageIndex, $this->usageReporter));
  2. }
  3. public function getBag(string $name): SessionBagInterface
  4. {
  5. $bag = $this->storage->getBag($name);
  6. return method_exists($bag, 'getBag') ? $bag->getBag() : $bag;
  7. }
  8. /**
  1. /**
  2. * Gets the flashbag interface.
  3. */
  4. public function getFlashBag(): FlashBagInterface
  5. {
  6. return $this->getBag($this->flashName);
  7. }
  8. /**
  9. * Gets the attributebag interface.
  10. *
  1. if (!$session instanceof FlashBagAwareSessionInterface) {
  2. return [];
  3. }
  4. if (null === $types || '' === $types || [] === $types) {
  5. return $session->getFlashBag()->all();
  6. }
  7. if (\is_string($types)) {
  8. return $session->getFlashBag()->get($types);
  9. }
  1. }
  2. // Some objects throw exceptions when they have __call, and the method we try
  3. // to call is not supported. If ignoreStrictCheck is true, we should return null.
  4. try {
  5. $ret = $object->$method(...$arguments);
  6. } catch (\BadMethodCallException $e) {
  7. if ($call && ($ignoreStrictCheck || !$env->isStrictVariables())) {
  8. return;
  9. }
  10. throw $e;
  1. yield $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment(Symfony\Bridge\Twig\Extension\HttpKernelExtension::controller("App\\Controller\\PartialController::navigation"));
  2. yield "
  3. </div>
  4. ";
  5. // line 33
  6. $context["saveFlashes"] = CoreExtension::getAttribute($this->env, $this->source, (isset($context["app"]) || array_key_exists("app", $context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.', 33, $this->source); })()), "flashes", [], "any", false, false, false, 33);
  7. // line 34
  8. yield " ";
  9. if ((Twig\Extension\CoreExtension::length($this->env->getCharset(), (isset($context["saveFlashes"]) || array_key_exists("saveFlashes", $context) ? $context["saveFlashes"] : (function () { throw new RuntimeError('Variable "saveFlashes" does not exist.', 34, $this->source); })())) > 0)) {
  10. // line 35
  11. yield " <div class=\"container-fluid\">
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. $__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "country/index.html.twig"));
  3. $this->parent = $this->load("base.html.twig", 1);
  4. yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
  5. $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  6. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = []): void
  4. {
  5. foreach ($this->yield($context, $blocks) as $data) {
  6. echo $data;
  7. }
  8. }
  9. public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 373)
  1. ob_start();
  2. } else {
  3. ob_start(function () { return ''; });
  4. }
  5. try {
  6. $this->display($context);
  7. } catch (\Throwable $e) {
  8. while (ob_get_level() > $level) {
  9. ob_end_clean();
  10. }
  1. yield from $this->template->yieldBlock($name, $context);
  2. }
  3. public function render(array $context = []): string
  4. {
  5. return $this->template->render($context);
  6. }
  7. /**
  8. * @return void
  9. */
  1. * @throws SyntaxError When an error occurred during compilation
  2. * @throws RuntimeError When an error occurred during rendering
  3. */
  4. public function render($name, array $context = []): string
  5. {
  6. return $this->load($name)->render($context);
  7. }
  8. /**
  9. * Displays a template.
  10. *
  1. if (null !== $block) {
  2. return $this->container->get('twig')->load($view)->renderBlock($block, $parameters);
  3. }
  4. return $this->container->get('twig')->render($view, $parameters);
  5. }
  6. private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
  7. {
  8. $content = $this->doRenderView($view, $block, $parameters, $method);
  1. return $this->container->get('twig')->render($view, $parameters);
  2. }
  3. private function doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response
  4. {
  5. $content = $this->doRenderView($view, $block, $parameters, $method);
  6. $response ??= new Response();
  7. if (200 === $response->getStatusCode()) {
  8. foreach ($parameters as $v) {
  9. if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
  1. * If an invalid form is found in the list of parameters, a 422 status code is returned.
  2. * Forms found in parameters are auto-cast to form views.
  3. */
  4. protected function render(string $view, array $parameters = [], ?Response $response = null): Response
  5. {
  6. return $this->doRender($view, null, $parameters, $response, __FUNCTION__);
  7. }
  8. /**
  9. * Renders a block in a view.
  10. *
AbstractController->render('country/index.html.twig', array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC')) in src/Controller/CountryController.php (line 23)
  1. {
  2. #[Route('/country/index/{filterEgalShort}/{order}/{way}', name: 'country_index')]
  3. public function index(CountryRepository $countryRepository, Request $request, int $filterEgalShort = 0, string $order = "name", string $way = "ASC",): Response
  4. {
  5. echo "id : ", $request->getSession()->getId();
  6. return $this->render('country/index.html.twig', [
  7. 'countries' => $countryRepository->filterCountryShortNameOrderedBy($filterEgalShort == 1, $order, $way),
  8. 'filterEgalShort' => $filterEgalShort,
  9. 'order' => $order,
  10. 'way' => $way
  11. ]);
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/var/www/symfony-app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 1

Level Channel Message
INFO 21:47:23 request Matched route "country_index".
{
    "route": "country_index",
    "route_parameters": {
        "_route": "country_index",
        "filterEgalShort": 0,
        "order": "name",
        "way": "ASC",
        "_controller": "App\\Controller\\CountryController::index"
    },
    "request_uri": "https://swimviz.com/country/index",
    "method": "GET"
}
DEBUG 21:47:23 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 3
}
DEBUG 21:47:23 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\LoginAuthenticator"
}
DEBUG 21:47:23 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\LoginAuthenticator"
}
DEBUG 21:47:23 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 21:47:23 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 21:47:23 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 21:47:23 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:47:23 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "ContainerWacRfMa\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerWacRfMa\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 21:47:23 deprecation User Deprecated: Support for MariaDB < 10.4 is deprecated and will be removed in DBAL 4. Consider upgrading to a more recent version of MariaDB. (AbstractMySQLDriver.php:61 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/6110, package doctrine/dbal)
{
    "exception": {}
}
INFO 21:47:23 doctrine Connecting with parameters {params}
{
    "params": {
        "use_savepoints": true,
        "driver": "pdo_mysql",
        "idle_connection_ttl": 600,
        "host": "db_swimviz",
        "port": null,
        "user": "udbsvo",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "swimviz",
        "serverVersion": "10.3.9-mariadb",
        "charset": "utf8mb4"
    }
}
DEBUG 21:47:23 doctrine Executing query: SELECT c0_.id AS id_0, c0_.name AS name_1, c0_.short_name AS short_name_2, c0_.english_name AS english_name_3, c0_.continent_id AS continent_id_4 FROM country c0_ LEFT JOIN continent c1_ ON c0_.continent_id = c1_.id ORDER BY c0_.name ASC
{
    "sql": "SELECT c0_.id AS id_0, c0_.name AS name_1, c0_.short_name AS short_name_2, c0_.english_name AS english_name_3, c0_.continent_id AS continent_id_4 FROM country c0_ LEFT JOIN continent c1_ ON c0_.continent_id = c1_.id ORDER BY c0_.name ASC"
}
CRITICAL 21:47:23 request Uncaught PHP Exception Twig\Error\RuntimeError: "An exception has been thrown during the rendering of a template ("Failed to start the session because headers have already been sent by "/var/www/symfony-app/src/Controller/CountryController.php" at line 22.") in "base.html.twig" at line 33." at base.html.twig line 33
{
    "exception": {}
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:47:23 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "ContainerWacRfMa\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerWacRfMa\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 21:47:23 doctrine Executing query: SELECT c0_.id AS id_0, c0_.name AS name_1, c1_.id AS id_2, c1_.name AS name_3, COUNT(c2_.id) AS sclr_4 FROM competition c2_ INNER JOIN competition_type c0_ ON c2_.competition_type_id = c0_.id INNER JOIN competition_discipline c1_ ON c2_.competition_discipline_id = c1_.id GROUP BY c0_.id, c0_.name, c1_.id, c1_.name ORDER BY c1_.id ASC, c0_.id ASC
{
    "sql": "SELECT c0_.id AS id_0, c0_.name AS name_1, c1_.id AS id_2, c1_.name AS name_3, COUNT(c2_.id) AS sclr_4 FROM competition c2_ INNER JOIN competition_type c0_ ON c2_.competition_type_id = c0_.id INNER JOIN competition_discipline c1_ ON c2_.competition_discipline_id = c1_.id GROUP BY c0_.id, c0_.name, c1_.id, c1_.name ORDER BY c1_.id ASC, c0_.id ASC"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 21:47:23 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:47:23 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 21:47:23 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 21:47:23 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 21:47:23 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:47:23 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:47:23 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:47:23 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "ContainerWacRfMa\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerWacRfMa\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 21:47:23 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 2

[2/2] RuntimeError
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("Failed to start the session because headers have already been sent by "/var/www/symfony-app/src/Controller/CountryController.php" at line 22.") in "base.html.twig" at line 33.

  at templates/base.html.twig:33
  at Twig\Template->yield(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC', 'app' => object(AppVariable)), array('stylesheets' => array(object(__TwigTemplate_a0a3e89bf11664d9fe88f110b24e2901), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_body'), 'javascripts' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_javascripts')))
     (var/cache/dev/twig/2d/2d811f45e09e4424c8f2977982064f25.php:54)
  at __TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e->doDisplay(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC', 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_body'), 'javascripts' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC', 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_body'), 'javascripts' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:358)
  at Twig\Template->display(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (vendor/twig/twig/src/Template.php:373)
  at Twig\Template->render(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (vendor/twig/twig/src/Environment.php:333)
  at Twig\Environment->render('country/index.html.twig', array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:431)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('country/index.html.twig', null, array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'), 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:436)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('country/index.html.twig', null, array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'), null, 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:250)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('country/index.html.twig', array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (src/Controller/CountryController.php:23)
  at App\Controller\CountryController->index(object(CountryRepository), object(Request), 0, 'name', 'ASC')
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/symfony-app/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] RuntimeException
RuntimeException:
Failed to start the session because headers have already been sent by "/var/www/symfony-app/src/Controller/CountryController.php" at line 22.

  at vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:116
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->start()
     (vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php:280)
  at Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage->getBag('flashes')
     (vendor/symfony/http-foundation/Session/Session.php:201)
  at Symfony\Component\HttpFoundation\Session\Session->getBag('flashes')
     (vendor/symfony/http-foundation/Session/Session.php:211)
  at Symfony\Component\HttpFoundation\Session\Session->getFlashBag()
     (vendor/symfony/twig-bridge/AppVariable.php:181)
  at Symfony\Bridge\Twig\AppVariable->getFlashes()
     (vendor/twig/twig/src/Extension/CoreExtension.php:1909)
  at Twig\Extension\CoreExtension::getAttribute(object(Environment), object(Source), object(AppVariable), 'flashes', array(), 'any', false, false, false, 33)
     (var/cache/dev/twig/ac/ac5b6b62dafc063ca40b409c91a711f4.php:107)
  at __TwigTemplate_a0a3e89bf11664d9fe88f110b24e2901->doDisplay(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC', 'app' => object(AppVariable), 'page' => 'home', 'title' => ''), array('stylesheets' => array(object(__TwigTemplate_a0a3e89bf11664d9fe88f110b24e2901), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_body'), 'javascripts' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC', 'app' => object(AppVariable)), array('stylesheets' => array(object(__TwigTemplate_a0a3e89bf11664d9fe88f110b24e2901), 'block_stylesheets'), 'body' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_body'), 'javascripts' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_javascripts')))
     (var/cache/dev/twig/2d/2d811f45e09e4424c8f2977982064f25.php:54)
  at __TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e->doDisplay(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC', 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_body'), 'javascripts' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC', 'app' => object(AppVariable)), array('body' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_body'), 'javascripts' => array(object(__TwigTemplate_3de1736fd0d1661a6e63b6aab47e737e), 'block_javascripts')))
     (vendor/twig/twig/src/Template.php:358)
  at Twig\Template->display(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (vendor/twig/twig/src/Template.php:373)
  at Twig\Template->render(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (vendor/twig/twig/src/Environment.php:333)
  at Twig\Environment->render('country/index.html.twig', array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:431)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('country/index.html.twig', null, array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'), 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:436)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('country/index.html.twig', null, array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'), null, 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:250)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('country/index.html.twig', array('countries' => array(object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country), object(Country)), 'filterEgalShort' => 0, 'order' => 'name', 'way' => 'ASC'))
     (src/Controller/CountryController.php:23)
  at App\Controller\CountryController->index(object(CountryRepository), object(Request), 0, 'name', 'ASC')
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/symfony-app/vendor/autoload_runtime.php')
     (public/index.php:5)                
Loading…
Loading the web debug toolbar…
Attempt #