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