Error 500 Internal Server Error

GET https://www.hasicskasoutez.cz/brezi-2024/rezervace/

ErrorController

Request

GET Parameters

None

POST Parameters

None

Uploaded Files

None

Request Attributes

Key Value
_controller
"error_controller"
_stopwatch_token
"a559ab"
exception
Twig\Error\RuntimeError {#913
  #message: "Variable "rezervace" does not exist."
  #code: 0
  #file: "/var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/partials/rezervace_detail.html.twig"
  #line: 1
  -lineno: 1
  -name: "partials/rezervace_detail.html.twig"
  -rawMessage: "Variable "rezervace" does not exist."
  -sourcePath: "/var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/partials/rezervace_detail.html.twig"
  -sourceCode: """
    {% if rezervace.spusteno %}\n
    <div class="rezervace-content">\n
        <div class="rezervace-odpocet">\n
            <div class="row">\n
                <div class="col-2"><i class="fas fa-map-marker-alt sedy" title="Místo"></i></div>\n
                <div class="col-10">\n
                    <a href="{{ path('app_soutez', {'slug': soutez.slug }) }}" target="_top">{{ soutez.misto }}&nbsp;{{  soutez.datum__formatted }}</a>\n
                </div>\n
            </div>\n
            <div class="row">\n
                <div class="col-2"><i class="fas fa-clock sedy" title="Kdy"></i></div>\n
                <div class="col-10">\n
                    {{  rezervace.zacatek__formatted }} - {{  rezervace.konec_formatted }}\n
                </div>\n
            </div>\n
            <div class="row">\n
                <div class="col-2"><i class="fas fa-external-link-square-alt sedy" title="Kdo"></i></div>\n
                <div class="col-10">\n
                    {% if rezervace.zakazatAnonymniRezervace %}\n
                    POZOR: Rezervovat místa mohou pouze registrovaní uživatelé (anonymní rezervace jsou pro tuto soutěž zakázané)\n
                    {% else %}\n
                    Rezervovat místa mohou registrovaní uživatelé i anonymní uživatelé (nutné vyplnit heslo)\n
                    {% endif %}\n
                </div>\n
            </div>\n
            <div class="row">\n
                <div class="col-2"><i class="fas fa-traffic-light sedy" title="Stav"></i></div>\n
                <div class="col-10">\n
                    {{ rezervace_stavovy_semafor(rezervace) }}\n
                </div>\n
            </div>\n
        </div>\n
    \n
        <div class="rezervace-login">\n
            <button type="button" class="btn btn-lg btn-light" data-bs-toggle="modal" data-bs-target="#loginModal">\n
                <i class="fa-solid fa-user"></i> {{ app.user.email ?? 'Přihlásit' }}\n
            </button>\n
    \n
        </div>\n
        <div class="oddelovac"></div>\n
    \n
    \n
        {% if je_adminem %}\n
        <div class="row">Administrace:\n
            <div class="col">\n
            <form name="frm_profil" id="frm_profil" method="POST" action="{{ path('app_editor_rezervace') }}" target="_blank">\n
                <input type="hidden" name="id_rezervace" value="{{ rezervace.idRezervace }}">\n
                <input type="hidden" name="akce" value="upravit">\n
                <input type="submit" name="odeslat" value="UPRAVIT">\n
            </form>\n
            </div>\n
            <div class="col">\n
            <form name="frm_profil" id="frm_profil" method="POST" action="{{ path('app_editor_rezervace') }}" target="_blank">\n
                <input type="hidden" name="id_rezervace" value="{{ rezervace.idRezervace }}">\n
                <input type="hidden" name="akce" value="smazat">\n
                <input type="submit" name="odeslat" value="SMAZAT">\n
            </form>\n
            </div>\n
        </div>\n
        {% endif %}\n
    \n
    \n
        {% if rezervace.poznamka %}\n
        <div class="box1" style="font-size:150%">{{ rezervace.poznamka }}</div>\n
        {% endif %}\n
        <br>\n
        <div>\n
            {% for item in kategorie %}\n
            <div>\n
                <h3>Kategorie {{  item['kategorie'] }}</h3>\n
            </div>\n
            <table class="table table-borderless table-striped">\n
                <tr>\n
                    <th style="width:6%">St.č.</th><th style="width:46%">Tým</th><th style="width:48%;" class="text-end">Autor</th>\n
                </tr>\n
                {%  for i in 1..item['pocet_mist'] %}\n
                <tr style="line-height:34px">\n
                    <td>&nbsp;{{ i }}</td>\n
                    <td>\n
                        {%  if i in item['pridane_rezervace']|keys %}\n
                            {{ item['pridane_rezervace'][i]['tym'] }}\n
                            {% set obsazeno = true %}\n
                        {% else %}\n
                            {% set obsazeno = false %}\n
                            {% if rezervace_skoncila == false %}\n
                            <input type="text" id="{{ 'tym_r_' ~ rezervace.idRezervace ~ '_' ~ item['id_kategorie'] ~ '_' ~ i }}" value="" size="15" maxlength="30" placeholder="Tým">\n
                            <input type="button" id="{{ 'r_' ~ rezervace.idRezervace ~ '_' ~ item['id_kategorie'] ~ '_' ~ i }}" value="Rezervovat" data-bs-target="#reservationModal" data-bs-toggle="modal" class="Rezervuj">\n
                                {% else %}\n
                                &nbsp;\n
                                {% endif %}\n
                        {% endif %}\n
                    </td>\n
                    <td class="text-end">\n
                        {% if obsazeno %}\n
                            {{ casovac(item['pridane_rezervace'][i]['datump']) }}\n
                            {% if item['pridane_rezervace'][i]['user_id'] == 2 %}\n
                                {{ item['pridane_rezervace'][i]['jmeno'] }}\n
                            {% else %}\n
                                <a href="{{ path('app_profil_uzivatel', {user: item['pridane_rezervace'][i]['user_id']}) }}" target="_top">{{ item['pridane_rezervace'][i]['jmeno'] }}</a>\n
                            {% endif %}\n
    \n
                            {% if rezervace_skoncila == false %}\n
                            <input type="button" id="{{ 'r_' ~ item['pridane_rezervace'][i]['id'] }}" value="Zrušit" data-bs-target="#reservationDeleteModal" data-bs-toggle="modal" class="SmazRezervaci">\n
                            {% endif %}\n
                        {% else %}\n
                            &nbsp;\n
                        {% endif %}\n
    \n
                    </td>\n
                </tr>\n
    \n
                {% endfor %}\n
            </table>\n
            {%  endfor %}\n
        </div>\n
    </div>\n
    \n
    {% else %}\n
        {% if rezervace.idRezervace %}\n
            <div>Rezervace není spuštěna.</div>\n
            {% else %}\n
                Soutěž nemá vytvořenou rezervaci startovního pořadí na těchto stránkách.<br><br>\n
                <span class="text-secondary">Pokud jsi pořadatel soutěže, můžeš </span>\n
                <a href="{{ path('app_editor_rezervace') }}" class="btn btn-secondary">PŘIDAT REZERVACI</a>.\n
                <br>\n
                <br>\n
                {% endif %}\n
    \n
    {% endif %}\n
    \n
    {% include 'partials/modal_reservation_add.html.twig' %}\n
    \n
    {% include 'partials/modal_reservation_delete.html.twig' %}\n
    \n
    \n
    \n
    """
  trace: {
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/partials/rezervace_detail.html.twig:1 {
      __TwigTemplate_c60810c625a68f30c93525e917756850->{closure} …
      › 
      › {% if rezervace.spusteno %}<div class="rezervace-content">
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/partials/rezervace_detail.html.twig:1 {
      __TwigTemplate_c60810c625a68f30c93525e917756850->doDisplay(array $context, array $blocks = []) …
      › 
      › {% if rezervace.spusteno %}<div class="rezervace-content">
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:360 {
      Twig\Template->yield(array $context, array $blocks = []): iterable …
      › 
      › foreach ($this->doDisplay($context, $blocks) as $data) {    if (ob_get_length()) {
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/soutez/rezervace.html.twig:9 {
      __TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f->block_body($context, array $blocks = []) …
      › <div class="desc">    {% include 'partials/rezervace_detail.html.twig' with rezervace_detail_props %}</div>
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:430 {
      Twig\Template->yieldBlock($name, array $context, array $blocks = [], $useBlocks = true, ?self $templateContext = null) …
      › 
      › foreach ($template->$block($context, $blocks) as $data) {    if (ob_get_length()) {
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/base.html.twig:74 {
      __TwigTemplate_b92a659c7de7db94665d2aa68735fa07->doDisplay(array $context, array $blocks = []) …
      › 
      ›     {% block body %}{% endblock %}</main>
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:360 {
      Twig\Template->yield(array $context, array $blocks = []): iterable …
      › 
      › foreach ($this->doDisplay($context, $blocks) as $data) {    if (ob_get_length()) {
    }
    /tmp/hasicskasoutezcz/dev/twig/9d/9dfbe6680ec6c131743098b7362ecb21.php:49 {
      __TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f->doDisplay(array $context, array $blocks = []) …
      › $this->parent = $this->loadTemplate("base.html.twig", "soutez/rezervace.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));}
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:360 {
      Twig\Template->yield(array $context, array $blocks = []): iterable …
      › 
      › foreach ($this->doDisplay($context, $blocks) as $data) {    if (ob_get_length()) {
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:335 {
      Twig\Template->render(array $context): string …
      › $content = '';foreach ($this->yield($context) as $data) {    $content .= $data;
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/TemplateWrapper.php:38 {
      Twig\TemplateWrapper->render(array $context = []): string …
      › {    return $this->template->render($context);}
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Environment.php:307 {
      Twig\Environment->render($name, array $context = []): string …
      › {    return $this->load($name)->render($context);}
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php:431 {
      Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView(string $view, ?string $block, array $parameters, string $method): string …
      › 
      ›     return $this->container->get('twig')->render($view, $parameters);}
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php:436 {
      Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response …
      › {    $content = $this->doRenderView($view, $block, $parameters, $method);    $response ??= new Response();
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php:250 {
      Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render(string $view, array $parameters = [], ?Response $response = null): Response …
      › {    return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/src/Controller/SoutezController.php:167 {
      App\Controller\SoutezController->rezervace(Request $request, $slug): Response …
      › 
      › return $this->render('soutez/rezervace.html.twig', [    'meta' => $this->meta->detailSoutez($soutez, $ligy, $podstranka),
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php:178 {
      Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
      › // call controller$response = $controller(...$arguments);}
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php:76 {
      Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
      › try {    return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php:185 {
      Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
      › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
      Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
      › {    $response = $this->kernel->handle($this->request);}
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php:29 {
      require_once …
      ›         ->getRunner($app)        ->run());
    }
    /var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php:5 {
      › 
      › require_once dirname(__DIR__).'/vendor/autoload_runtime.php';arguments: {
        "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
      }
    }
  }
}
logger
Symfony\Bridge\Monolog\Processor\DebugProcessor {#232
  -records: [
    16 => [
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.709+00:00"
        "message" => "Matched route "{route}"."
        "priority" => 200
        "priorityName" => "INFO"
        "context" => [
          "route" => "app_soutez_rezervace"
          "route_parameters" => [
            "_route" => "app_soutez_rezervace"
            "_controller" => "App\Controller\SoutezController::rezervace"
            "slug" => "brezi-2024"
          ]
          "request_uri" => "https://www.hasicskasoutez.cz/brezi-2024/rezervace/"
          "method" => "GET"
        ]
        "channel" => "request"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.723+00:00"
        "message" => "Checking for authenticator support."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "firewall_name" => "main"
          "authenticators" => 1
        ]
        "channel" => "security"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.723+00:00"
        "message" => "Checking support on authenticator."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "firewall_name" => "main"
          "authenticator" => "App\Security\MyOauth2Authenticator"
        ]
        "channel" => "security"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.723+00:00"
        "message" => "Authenticator does not support the request."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "firewall_name" => "main"
          "authenticator" => "App\Security\MyOauth2Authenticator"
        ]
        "channel" => "security"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.724+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.736+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.736+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller"
          "listener" => "App\EventSubscriber\ApiKeySubscriber::onKernelController"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.736+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.756+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.756+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.756+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "ContainerGQPjAYB\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.756+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.770+00:00"
        "message" => "Connecting with parameters {params}"
        "priority" => 200
        "priorityName" => "INFO"
        "context" => [
          "params" => [
            "driver" => "pdo_mysql"
            "host" => "hasicskasoutez.cz"
            "port" => null
            "user" => "hasicskasoutezcz"
            "password" => "<redacted>"
            "driverOptions" => []
            "defaultTableOptions" => []
            "dbname" => "hasicskasoutezcz"
            "serverVersion" => "10.5.23-MariaDB"
            "charset" => "utf8mb4"
          ]
        ]
        "channel" => "doctrine"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.798+00:00"
        "message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "sql" => "SELECT t0.id_souteze AS id_souteze_1, t0.rocnik AS rocnik_2, t0.nazev AS nazev_3, t0.misto AS misto_4, t0.okres AS okres_5, t0.datum AS datum_6, t0.datum_do AS datum_do_7, t0.datum_interval_zacatek AS datum_interval_zacatek_8, t0.datum_interval_konec AS datum_interval_konec_9, t0.zacatek AS zacatek_10, t0.datump AS datump_11, t0.datumz AS datumz_12, t0.kontakt AS kontakt_13, t0.kategorie AS kategorie_14, t0.disciplina AS disciplina_15, t0.pozvanka_id_dokumentu AS pozvanka_id_dokumentu_16, t0.poradatel AS poradatel_17, t0.nocni AS nocni_18, t0.pocet_prispevku AS pocet_prispevku_19, t0.pocet_videi AS pocet_videi_20, t0.pocet_fotek AS pocet_fotek_21, t0.terce AS terce_22, t0.poradatel_sdh AS poradatel_sdh_23, t0.url_rezervace AS url_rezervace_24, t0.pocet_vysledku AS pocet_vysledku_25, t0.id_rezervace AS id_rezervace_26, t0.lat AS lat_27, t0.lng AS lng_28, t0.muzi_bezi_na_2b AS muzi_bezi_na_2b_29, t0.id_zivy_prenos AS id_zivy_prenos_30, t0.id_tipovacky AS id_tipovacky_31, t0.datum_aktualizace_vysledku AS datum_aktualizace_vysledku_32, t0.misto_f AS misto_f_33, t0.pocet_rezervaci AS pocet_rezervaci_34, t0.slug AS slug_35, t0.user_id AS user_id_36, t0.slug_old AS slug_old_37, t0.hity AS hity_38 FROM souteze t0 WHERE t0.slug = ? LIMIT 1"
          "params" => [
            1 => "brezi-2024"
          ]
          "types" => [
            1 => 2
          ]
        ]
        "channel" => "doctrine"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.806+00:00"
        "message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "sql" => "SELECT t0.id AS id_1, t0.id_soutez AS id_soutez_2, t0.id_ligy AS id_ligy_3, t0.user_id AS user_id_4, t0.razeni AS razeni_5 FROM souteze_do_ligy t0 WHERE t0.id_soutez = ?"
          "params" => [
            1 => 4813
          ]
          "types" => [
            1 => 1
          ]
        ]
        "channel" => "doctrine"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.807+00:00"
        "message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "sql" => "SELECT t0.id_ligy AS id_ligy_1, t0.zkratka AS zkratka_2, t0.nazev AS nazev_3, t0.user_id AS user_id_4, t0.url_stranek_ligy AS url_stranek_ligy_5, t0.url_pravidla AS url_pravidla_6, t0.url_facebook AS url_facebook_7, t0.url_youtube AS url_youtube_8, t0.datump AS datump_9, t0.datumz AS datumz_10, t0.kategorie AS kategorie_11, t0.disciplina AS disciplina_12, t0.top AS top_13, t0.pravidla_hadice AS pravidla_hadice_14, t0.razeni AS razeni_15, t0.open AS open_16, t0.deti AS deti_17, t0.avatar_url AS avatar_url_18, t0.url_instagram AS url_instagram_19, t0.slug AS slug_20, t0.popis AS popis_21 FROM ligy t0 WHERE t0.id_ligy IN (?)"
          "params" => [
            1 => 75
          ]
          "types" => [
            1 => 1
          ]
        ]
        "channel" => "doctrine"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.809+00:00"
        "message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "sql" => "SELECT t0.id AS id_1, t0.kraj_id AS kraj_id_2, t0.okres_id AS okres_id_3, t0.alias AS alias_4, t0.okres AS okres_5 FROM okresy t0 WHERE t0.okres = ? LIMIT 1"
          "params" => [
            1 => "DO"
          ]
          "types" => [
            1 => 2
          ]
        ]
        "channel" => "doctrine"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.809+00:00"
        "message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "sql" => "SELECT t0.id_ligy AS id_ligy_1, t0.zkratka AS zkratka_2, t0.nazev AS nazev_3, t0.user_id AS user_id_4, t0.url_stranek_ligy AS url_stranek_ligy_5, t0.url_pravidla AS url_pravidla_6, t0.url_facebook AS url_facebook_7, t0.url_youtube AS url_youtube_8, t0.datump AS datump_9, t0.datumz AS datumz_10, t0.kategorie AS kategorie_11, t0.disciplina AS disciplina_12, t0.top AS top_13, t0.pravidla_hadice AS pravidla_hadice_14, t0.razeni AS razeni_15, t0.open AS open_16, t0.deti AS deti_17, t0.avatar_url AS avatar_url_18, t0.url_instagram AS url_instagram_19, t0.slug AS slug_20, t0.popis AS popis_21 FROM ligy t0 WHERE t0.id_ligy = ? LIMIT 1"
          "params" => [
            1 => 0
          ]
          "types" => [
            1 => 1
          ]
        ]
        "channel" => "doctrine"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.810+00:00"
        "message" => "Executing statement: {sql} (parameters: {params}, types: {types})"
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "sql" => "SELECT t0.id AS id_1, t0.id_souteze AS id_souteze_2, t0.id_tymu AS id_tymu_3, t0.image_url AS image_url_4, t0.image_url_sirka AS image_url_sirka_5, t0.image_url_vyska AS image_url_vyska_6, t0.datump AS datump_7, t0.user_id AS user_id_8, t0.image_url_old AS image_url_old_9, t0.image_url_default AS image_url_default_10, t0.image_url_default_sirka AS image_url_default_sirka_11, t0.image_url_default_vyska AS image_url_default_vyska_12, t0.image_url_default_851 AS image_url_default_851_13, t0.datumz AS datumz_14 FROM avatar t0 WHERE t0.id_souteze = ? LIMIT 1"
          "params" => [
            1 => 4813
          ]
          "types" => [
            1 => 1
          ]
        ]
        "channel" => "doctrine"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.827+00:00"
        "message" => "Uncaught PHP Exception Twig\Error\RuntimeError: "Variable "rezervace" does not exist." at rezervace_detail.html.twig line 1"
        "priority" => 500
        "priorityName" => "CRITICAL"
        "context" => [
          "exception" => Twig\Error\RuntimeError {#913
            #message: "Variable "rezervace" does not exist."
            #code: 0
            #file: "/var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/partials/rezervace_detail.html.twig"
            #line: 1
            -lineno: 1
            -name: "partials/rezervace_detail.html.twig"
            -rawMessage: "Variable "rezervace" does not exist."
            -sourcePath: "/var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/partials/rezervace_detail.html.twig"
            -sourceCode: """
              {% if rezervace.spusteno %}\n
              <div class="rezervace-content">\n
                  <div class="rezervace-odpocet">\n
                      <div class="row">\n
                          <div class="col-2"><i class="fas fa-map-marker-alt sedy" title="Místo"></i></div>\n
                          <div class="col-10">\n
                              <a href="{{ path('app_soutez', {'slug': soutez.slug }) }}" target="_top">{{ soutez.misto }}&nbsp;{{  soutez.datum__formatted }}</a>\n
                          </div>\n
                      </div>\n
                      <div class="row">\n
                          <div class="col-2"><i class="fas fa-clock sedy" title="Kdy"></i></div>\n
                          <div class="col-10">\n
                              {{  rezervace.zacatek__formatted }} - {{  rezervace.konec_formatted }}\n
                          </div>\n
                      </div>\n
                      <div class="row">\n
                          <div class="col-2"><i class="fas fa-external-link-square-alt sedy" title="Kdo"></i></div>\n
                          <div class="col-10">\n
                              {% if rezervace.zakazatAnonymniRezervace %}\n
                              POZOR: Rezervovat místa mohou pouze registrovaní uživatelé (anonymní rezervace jsou pro tuto soutěž zakázané)\n
                              {% else %}\n
                              Rezervovat místa mohou registrovaní uživatelé i anonymní uživatelé (nutné vyplnit heslo)\n
                              {% endif %}\n
                          </div>\n
                      </div>\n
                      <div class="row">\n
                          <div class="col-2"><i class="fas fa-traffic-light sedy" title="Stav"></i></div>\n
                          <div class="col-10">\n
                              {{ rezervace_stavovy_semafor(rezervace) }}\n
                          </div>\n
                      </div>\n
                  </div>\n
              \n
                  <div class="rezervace-login">\n
                      <button type="button" class="btn btn-lg btn-light" data-bs-toggle="modal" data-bs-target="#loginModal">\n
                          <i class="fa-solid fa-user"></i> {{ app.user.email ?? 'Přihlásit' }}\n
                      </button>\n
              \n
                  </div>\n
                  <div class="oddelovac"></div>\n
              \n
              \n
                  {% if je_adminem %}\n
                  <div class="row">Administrace:\n
                      <div class="col">\n
                      <form name="frm_profil" id="frm_profil" method="POST" action="{{ path('app_editor_rezervace') }}" target="_blank">\n
                          <input type="hidden" name="id_rezervace" value="{{ rezervace.idRezervace }}">\n
                          <input type="hidden" name="akce" value="upravit">\n
                          <input type="submit" name="odeslat" value="UPRAVIT">\n
                      </form>\n
                      </div>\n
                      <div class="col">\n
                      <form name="frm_profil" id="frm_profil" method="POST" action="{{ path('app_editor_rezervace') }}" target="_blank">\n
                          <input type="hidden" name="id_rezervace" value="{{ rezervace.idRezervace }}">\n
                          <input type="hidden" name="akce" value="smazat">\n
                          <input type="submit" name="odeslat" value="SMAZAT">\n
                      </form>\n
                      </div>\n
                  </div>\n
                  {% endif %}\n
              \n
              \n
                  {% if rezervace.poznamka %}\n
                  <div class="box1" style="font-size:150%">{{ rezervace.poznamka }}</div>\n
                  {% endif %}\n
                  <br>\n
                  <div>\n
                      {% for item in kategorie %}\n
                      <div>\n
                          <h3>Kategorie {{  item['kategorie'] }}</h3>\n
                      </div>\n
                      <table class="table table-borderless table-striped">\n
                          <tr>\n
                              <th style="width:6%">St.č.</th><th style="width:46%">Tým</th><th style="width:48%;" class="text-end">Autor</th>\n
                          </tr>\n
                          {%  for i in 1..item['pocet_mist'] %}\n
                          <tr style="line-height:34px">\n
                              <td>&nbsp;{{ i }}</td>\n
                              <td>\n
                                  {%  if i in item['pridane_rezervace']|keys %}\n
                                      {{ item['pridane_rezervace'][i]['tym'] }}\n
                                      {% set obsazeno = true %}\n
                                  {% else %}\n
                                      {% set obsazeno = false %}\n
                                      {% if rezervace_skoncila == false %}\n
                                      <input type="text" id="{{ 'tym_r_' ~ rezervace.idRezervace ~ '_' ~ item['id_kategorie'] ~ '_' ~ i }}" value="" size="15" maxlength="30" placeholder="Tým">\n
                                      <input type="button" id="{{ 'r_' ~ rezervace.idRezervace ~ '_' ~ item['id_kategorie'] ~ '_' ~ i }}" value="Rezervovat" data-bs-target="#reservationModal" data-bs-toggle="modal" class="Rezervuj">\n
                                          {% else %}\n
                                          &nbsp;\n
                                          {% endif %}\n
                                  {% endif %}\n
                              </td>\n
                              <td class="text-end">\n
                                  {% if obsazeno %}\n
                                      {{ casovac(item['pridane_rezervace'][i]['datump']) }}\n
                                      {% if item['pridane_rezervace'][i]['user_id'] == 2 %}\n
                                          {{ item['pridane_rezervace'][i]['jmeno'] }}\n
                                      {% else %}\n
                                          <a href="{{ path('app_profil_uzivatel', {user: item['pridane_rezervace'][i]['user_id']}) }}" target="_top">{{ item['pridane_rezervace'][i]['jmeno'] }}</a>\n
                                      {% endif %}\n
              \n
                                      {% if rezervace_skoncila == false %}\n
                                      <input type="button" id="{{ 'r_' ~ item['pridane_rezervace'][i]['id'] }}" value="Zrušit" data-bs-target="#reservationDeleteModal" data-bs-toggle="modal" class="SmazRezervaci">\n
                                      {% endif %}\n
                                  {% else %}\n
                                      &nbsp;\n
                                  {% endif %}\n
              \n
                              </td>\n
                          </tr>\n
              \n
                          {% endfor %}\n
                      </table>\n
                      {%  endfor %}\n
                  </div>\n
              </div>\n
              \n
              {% else %}\n
                  {% if rezervace.idRezervace %}\n
                      <div>Rezervace není spuštěna.</div>\n
                      {% else %}\n
                          Soutěž nemá vytvořenou rezervaci startovního pořadí na těchto stránkách.<br><br>\n
                          <span class="text-secondary">Pokud jsi pořadatel soutěže, můžeš </span>\n
                          <a href="{{ path('app_editor_rezervace') }}" class="btn btn-secondary">PŘIDAT REZERVACI</a>.\n
                          <br>\n
                          <br>\n
                          {% endif %}\n
              \n
              {% endif %}\n
              \n
              {% include 'partials/modal_reservation_add.html.twig' %}\n
              \n
              {% include 'partials/modal_reservation_delete.html.twig' %}\n
              \n
              \n
              \n
              """
            trace: {
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/partials/rezervace_detail.html.twig:1 {
                __TwigTemplate_c60810c625a68f30c93525e917756850->{closure} …
                › 
                › {% if rezervace.spusteno %}<div class="rezervace-content">
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/partials/rezervace_detail.html.twig:1 {
                __TwigTemplate_c60810c625a68f30c93525e917756850->doDisplay(array $context, array $blocks = []) …
                › 
                › {% if rezervace.spusteno %}<div class="rezervace-content">
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:360 {
                Twig\Template->yield(array $context, array $blocks = []): iterable …
                › 
                › foreach ($this->doDisplay($context, $blocks) as $data) {    if (ob_get_length()) {
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/soutez/rezervace.html.twig:9 {
                __TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f->block_body($context, array $blocks = []) …
                › <div class="desc">    {% include 'partials/rezervace_detail.html.twig' with rezervace_detail_props %}</div>
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:430 {
                Twig\Template->yieldBlock($name, array $context, array $blocks = [], $useBlocks = true, ?self $templateContext = null) …
                › 
                › foreach ($template->$block($context, $blocks) as $data) {    if (ob_get_length()) {
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/templates/base.html.twig:74 {
                __TwigTemplate_b92a659c7de7db94665d2aa68735fa07->doDisplay(array $context, array $blocks = []) …
                › 
                ›     {% block body %}{% endblock %}</main>
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:360 {
                Twig\Template->yield(array $context, array $blocks = []): iterable …
                › 
                › foreach ($this->doDisplay($context, $blocks) as $data) {    if (ob_get_length()) {
              }
              /tmp/hasicskasoutezcz/dev/twig/9d/9dfbe6680ec6c131743098b7362ecb21.php:49 {
                __TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f->doDisplay(array $context, array $blocks = []) …
                › $this->parent = $this->loadTemplate("base.html.twig", "soutez/rezervace.html.twig", 1);yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));}
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:360 {
                Twig\Template->yield(array $context, array $blocks = []): iterable …
                › 
                › foreach ($this->doDisplay($context, $blocks) as $data) {    if (ob_get_length()) {
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php:335 {
                Twig\Template->render(array $context): string …
                › $content = '';foreach ($this->yield($context) as $data) {    $content .= $data;
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/TemplateWrapper.php:38 {
                Twig\TemplateWrapper->render(array $context = []): string …
                › {    return $this->template->render($context);}
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Environment.php:307 {
                Twig\Environment->render($name, array $context = []): string …
                › {    return $this->load($name)->render($context);}
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php:431 {
                Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView(string $view, ?string $block, array $parameters, string $method): string …
                › 
                ›     return $this->container->get('twig')->render($view, $parameters);}
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php:436 {
                Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender(string $view, ?string $block, array $parameters, ?Response $response, string $method): Response …
                › {    $content = $this->doRenderView($view, $block, $parameters, $method);    $response ??= new Response();
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php:250 {
                Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render(string $view, array $parameters = [], ?Response $response = null): Response …
                › {    return $this->doRender($view, null, $parameters, $response, __FUNCTION__);}
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/src/Controller/SoutezController.php:167 {
                App\Controller\SoutezController->rezervace(Request $request, $slug): Response …
                › 
                › return $this->render('soutez/rezervace.html.twig', [    'meta' => $this->meta->detailSoutez($soutez, $ligy, $podstranka),
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php:178 {
                Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
                › // call controller$response = $controller(...$arguments);}
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php:76 {
                Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
                › try {    return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php:185 {
                Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true): Response …
                › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35 {
                Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run(): int …
                › {    $response = $this->kernel->handle($this->request);}
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php:29 {
                require_once …
                ›         ->getRunner($app)        ->run());
              }
              /var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php:5 {
                › 
                › require_once dirname(__DIR__).'/vendor/autoload_runtime.php';arguments: {
                  "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
                }
              }
            }
          }
        ]
        "channel" => "request"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\Security\Http\Firewall\ExceptionListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\WebpackEncoreBundle\EventListener\ExceptionListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Listener "{listener}" stopped propagation of the event "{event}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.exception"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.876+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
    ]
    1080 => [
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.828+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.836+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.836+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller"
          "listener" => "App\EventSubscriber\ApiKeySubscriber::onKernelController"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.836+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.836+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.836+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.836+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "ContainerGQPjAYB\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.836+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.controller_arguments"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.872+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.response"
          "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets"
        ]
        "channel" => "event"
      ]
      [
        "timestamp" => 1738450646
        "timestamp_rfc3339" => "2025-02-01T22:57:26.873+00:00"
        "message" => "Notified event "{event}" to listener "{listener}"."
        "priority" => 100
        "priorityName" => "DEBUG"
        "context" => [
          "event" => "kernel.finish_request"
          "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest"
        ]
        "channel" => "event"
      ]
    ]
  ]
  -errorCount: [
    16 => 1
    1080 => 0
  ]
  -requestStack: Symfony\Component\HttpKernel\Debug\VirtualRequestStack {#236 …}
}

Request Headers

Header Value
accept
"*/*"
accept-encoding
"gzip, br, deflate"
from
"gptbot(at)openai.com"
host
"www.hasicskasoutez.cz"
user-agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)"
x-openai-host-hash
"968806109"
x-php-ob-level
"1"

Request Content

Request content not available (it was retrieved as a resource).

Response

Response Headers

Header Value
cache-control
"no-cache, private"
content-type
"text/html; charset=UTF-8"
date
"Sat, 01 Feb 2025 22:57:26 GMT"
vary
"Accept"
x-debug-exception
"Variable%20%22rezervace%22%20does%20not%20exist."
x-debug-exception-file
"%2Fvar%2Fwww%2Fvhosts%2Fhasicskasoutez.cz%2Fhttpdocs%2Ftemplates%2Fpartials%2Frezervace_detail.html.twig:1"
x-debug-token
"e721c2"

Cookies

Request Cookies

No request cookies

Response Cookies

No response cookies

Session 12

Session Metadata

Key Value
Created
"Sat, 01 Feb 25 22:57:26 +0000"
Last used
"Sat, 01 Feb 25 22:57:26 +0000"
Lifetime
0

Session Attributes

Attribute Value
_csrf/https-authenticate
"ksberGGDK_mdYsUzaC75mfdzs_V5Bjk2QcWB9dHh780"

Session Usage

12 Usages
Stateless check enabled
Usage
Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage:41
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-core/Authentication/Token/Storage/UsageTrackingTokenStorage.php"
    "line" => 41
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-bundle/Security.php"
    "line" => 68
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-bundle/Security.php"
    "line" => 50
    "function" => "getToken"
    "class" => "Symfony\Bundle\SecurityBundle\Security"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/src/Security/MyOauth2Authenticator.php"
    "line" => 57
    "function" => "getUser"
    "class" => "Symfony\Bundle\SecurityBundle\Security"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-http/Authentication/AuthenticatorManager.php"
    "line" => 111
    "function" => "supports"
    "class" => "App\Security\MyOauth2Authenticator"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php"
    "line" => 34
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Authentication\AuthenticatorManager"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php"
    "line" => 40
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php"
    "line" => 38
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-http/Firewall/AbstractListener.php"
    "line" => 25
    "function" => "supports"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php"
    "line" => 80
    "function" => "__invoke"
    "class" => "Symfony\Component\Security\Http\Firewall\AbstractListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-http/Firewall.php"
    "line" => 95
    "function" => "callListeners"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelRequest"
    "class" => "Symfony\Component\Security\Http\Firewall"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:73
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 73
    "function" => "start"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 69
    "function" => "hasToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/form/FormRenderer.php"
    "line" => 56
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/9f/9f45e6aa77dbefda6f58b114e147c105.php"
    "line" => 62
    "function" => "renderCsrfToken"
    "class" => "Symfony\Component\Form\FormRenderer"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_c90ae92bc04551918262206f481011ef"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/3a/3a02ada5c82f0afc097cf5dae377855e.php"
    "line" => 72
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6f1739991e711bf4811b778f6e730226"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/ba/ba41afbf39cdb20806158cf9474d4508.php"
    "line" => 56
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_a19c00ff1c06b325601bcf1a1a35e056"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/8d/8d99792007f63fae84e99bd84dc5905c.php"
    "line" => 139
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_5eb0e59fd9fcefaae4014347db10a999"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/45/45d164ffa050e8366527021017540704.php"
    "line" => 104
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_b92a659c7de7db94665d2aa68735fa07"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/9d/9dfbe6680ec6c131743098b7362ecb21.php"
    "line" => 49
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 335
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 38
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Environment.php"
    "line" => 307
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 431
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 436
    "function" => "doRenderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 250
    "function" => "doRender"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/src/Controller/SoutezController.php"
    "line" => 167
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 178
    "function" => "rezervace"
    "class" => "App\Controller\SoutezController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:76
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 76
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 69
    "function" => "hasToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/form/FormRenderer.php"
    "line" => 56
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/9f/9f45e6aa77dbefda6f58b114e147c105.php"
    "line" => 62
    "function" => "renderCsrfToken"
    "class" => "Symfony\Component\Form\FormRenderer"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_c90ae92bc04551918262206f481011ef"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/3a/3a02ada5c82f0afc097cf5dae377855e.php"
    "line" => 72
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6f1739991e711bf4811b778f6e730226"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/ba/ba41afbf39cdb20806158cf9474d4508.php"
    "line" => 56
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_a19c00ff1c06b325601bcf1a1a35e056"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/8d/8d99792007f63fae84e99bd84dc5905c.php"
    "line" => 139
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_5eb0e59fd9fcefaae4014347db10a999"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/45/45d164ffa050e8366527021017540704.php"
    "line" => 104
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_b92a659c7de7db94665d2aa68735fa07"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/9d/9dfbe6680ec6c131743098b7362ecb21.php"
    "line" => 49
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 335
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 38
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Environment.php"
    "line" => 307
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 431
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 436
    "function" => "doRenderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 250
    "function" => "doRender"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/src/Controller/SoutezController.php"
    "line" => 167
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 178
    "function" => "rezervace"
    "class" => "App\Controller\SoutezController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:66
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 66
    "function" => "set"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 74
    "function" => "setToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/form/FormRenderer.php"
    "line" => 56
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/9f/9f45e6aa77dbefda6f58b114e147c105.php"
    "line" => 62
    "function" => "renderCsrfToken"
    "class" => "Symfony\Component\Form\FormRenderer"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_c90ae92bc04551918262206f481011ef"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/3a/3a02ada5c82f0afc097cf5dae377855e.php"
    "line" => 72
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_6f1739991e711bf4811b778f6e730226"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/ba/ba41afbf39cdb20806158cf9474d4508.php"
    "line" => 56
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_a19c00ff1c06b325601bcf1a1a35e056"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/8d/8d99792007f63fae84e99bd84dc5905c.php"
    "line" => 139
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_5eb0e59fd9fcefaae4014347db10a999"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/45/45d164ffa050e8366527021017540704.php"
    "line" => 104
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_b92a659c7de7db94665d2aa68735fa07"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/9d/9dfbe6680ec6c131743098b7362ecb21.php"
    "line" => 49
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 335
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 38
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Environment.php"
    "line" => 307
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 431
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 436
    "function" => "doRenderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 250
    "function" => "doRender"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/src/Controller/SoutezController.php"
    "line" => 167
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 178
    "function" => "rezervace"
    "class" => "App\Controller\SoutezController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Bridge\Twig\AppVariable:185
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/twig-bridge/AppVariable.php"
    "line" => 185
    "function" => "getFlashBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1629
    "function" => "getFlashes"
    "class" => "Symfony\Bridge\Twig\AppVariable"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/45/45d164ffa050e8366527021017540704.php"
    "line" => 118
    "function" => "getAttribute"
    "class" => "Twig\Extension\CoreExtension"
    "type" => "::"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_b92a659c7de7db94665d2aa68735fa07"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/9d/9dfbe6680ec6c131743098b7362ecb21.php"
    "line" => 49
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 335
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 38
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Environment.php"
    "line" => 307
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 431
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 436
    "function" => "doRenderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 250
    "function" => "doRender"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/src/Controller/SoutezController.php"
    "line" => 167
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 178
    "function" => "rezervace"
    "class" => "App\Controller\SoutezController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Bridge\Twig\AppVariable:190
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/twig-bridge/AppVariable.php"
    "line" => 190
    "function" => "getFlashBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1629
    "function" => "getFlashes"
    "class" => "Symfony\Bridge\Twig\AppVariable"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/45/45d164ffa050e8366527021017540704.php"
    "line" => 138
    "function" => "getAttribute"
    "class" => "Twig\Extension\CoreExtension"
    "type" => "::"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_b92a659c7de7db94665d2aa68735fa07"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/9d/9dfbe6680ec6c131743098b7362ecb21.php"
    "line" => 49
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 335
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 38
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Environment.php"
    "line" => 307
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 431
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 436
    "function" => "doRenderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 250
    "function" => "doRender"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/src/Controller/SoutezController.php"
    "line" => 167
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 178
    "function" => "rezervace"
    "class" => "App\Controller\SoutezController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Bridge\Twig\AppVariable:181
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/twig-bridge/AppVariable.php"
    "line" => 181
    "function" => "getFlashBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1629
    "function" => "getFlashes"
    "class" => "Symfony\Bridge\Twig\AppVariable"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/45/45d164ffa050e8366527021017540704.php"
    "line" => 171
    "function" => "getAttribute"
    "class" => "Twig\Extension\CoreExtension"
    "type" => "::"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_b92a659c7de7db94665d2aa68735fa07"
    "type" => "->"
  ]
  [
    "file" => "/tmp/hasicskasoutezcz/dev/twig/9d/9dfbe6680ec6c131743098b7362ecb21.php"
    "line" => 49
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 360
    "function" => "doDisplay"
    "class" => "__TwigTemplate_2b885202a8ea5b319a8e2b9eff96762f"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Template.php"
    "line" => 335
    "function" => "yield"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 38
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/twig/twig/src/Environment.php"
    "line" => 307
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 431
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 436
    "function" => "doRenderView"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/framework-bundle/Controller/AbstractController.php"
    "line" => 250
    "function" => "doRender"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/src/Controller/SoutezController.php"
    "line" => 167
    "function" => "render"
    "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 178
    "function" => "rezervace"
    "class" => "App\Controller\SoutezController"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:69
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 69
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 211
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 199
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 111
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 236
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 91
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:70
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 70
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 211
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 199
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 111
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 236
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 91
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:71
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 71
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 211
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 199
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 111
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 236
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 91
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:72
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 72
    "function" => "all"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 211
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 199
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 111
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 236
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 91
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:73
[
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 73
    "function" => "getFlashBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 211
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 199
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 76
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 111
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 116
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 206
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 56
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 127
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 236
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 91
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/http-kernel/Kernel.php"
    "line" => 185
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php"
    "line" => 35
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    "line" => 29
    "function" => "run"
    "class" => "Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner"
    "type" => "->"
  ]
  [
    "file" => "/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
    "line" => 5
    "args" => [
      "/var/www/vhosts/hasicskasoutez.cz/httpdocs/vendor/autoload_runtime.php"
    ]
    "function" => "require_once"
  ]
]

Flashes

Flashes

No flash messages were created.

Server Parameters

Server Parameters

Defined in .env

Key Value
API_KEY
"KeyHs2025Admin"
APP_ENV
"dev"
APP_SECRET
"4bb94a3c5c61c78f3c7aef5fd9d3961f"
CORS_ALLOW_ORIGIN
"^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$"
DATABASE_URL
"mysql://hasicskasoutezcz:MysDfk4cDC5x.sS@hasicskasoutez.cz/hasicskasoutezcz?serverVersion=10.5.23-MariaDB&charset=utf8mb4"
MAILER_DSN
"smtp://admin@hasicskasoutez.cz:TrX8a36b@b2x.cz:25"
MESSENGER_TRANSPORT_DSN
"doctrine://default?auto_setup=0"
OAUTH_CLIENT_ID
"Admin"
OAUTH_CLIENT_SECRET
"98e5e4916c1baaf0c81d81474c5c08321f306251"
OAUTH_ENCRYPTION_KEY
"ea06f6e5f0ed790790abfee08e4770f3"
OAUTH_FACEBOOK_CLIENT_ID
"1040739754763040"
OAUTH_FACEBOOK_CLIENT_SECRET
"f193e5466ac20313afbf5f4cd90b9e78"
OAUTH_GOOGLE_CLIENT_ID
"299901197775-1sb00nssbvvl3vdie6n4bmmp6kgbinnd.apps.googleusercontent.com"
OAUTH_GOOGLE_CLIENT_SECRET
"FF60ACclU6JAK7Gt6sucWYaJ"
OAUTH_PASSPHRASE
"53b4e1431d4bf13a48510ccd73e612c4"
OAUTH_PRIVATE_KEY
"%kernel.project_dir%/config/jwt/private.key"
OAUTH_PUBLIC_KEY
"%kernel.project_dir%/config/jwt/public.key"
TEST_PASSWORD
"e7873"
TEST_USER_ID
"klimes@b2x.cz"

Defined as regular env variables

Key Value
APP_DEBUG
"1"
CONTENT_LENGTH
""
CONTENT_TYPE
""
DOCUMENT_ROOT
"/var/www/vhosts/hasicskasoutez.cz/httpdocs/public"
DOCUMENT_URI
"/index.php"
FCGI_ROLE
"RESPONDER"
GATEWAY_INTERFACE
"CGI/1.1"
HOME
"/var/www/vhosts/hasicskasoutez.cz"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, deflate"
HTTP_FROM
"gptbot(at)openai.com"
HTTP_HOST
"www.hasicskasoutez.cz"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)"
HTTP_X_OPENAI_HOST_HASH
"968806109"
PATH_INFO
""
PHP_SELF
"/index.php"
QUERY_STRING
""
REDIRECT_STATUS
"200"
REMOTE_ADDR
"4.227.36.74"
REMOTE_PORT
"59066"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_TIME
1738450646
REQUEST_TIME_FLOAT
1738450646.6308
REQUEST_URI
"/brezi-2024/rezervace/"
SCRIPT_FILENAME
"/var/www/vhosts/hasicskasoutez.cz/httpdocs/public/index.php"
SCRIPT_NAME
"/index.php"
SERVER_ADDR
"80.211.202.47"
SERVER_NAME
"www.hasicskasoutez.cz"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/2.0"
SERVER_SOFTWARE
"nginx/1.26.2"
SYMFONY_DOTENV_VARS
"APP_ENV,APP_SECRET,DATABASE_URL,MESSENGER_TRANSPORT_DSN,MAILER_DSN,OAUTH_FACEBOOK_CLIENT_ID,OAUTH_FACEBOOK_CLIENT_SECRET,OAUTH_GOOGLE_CLIENT_ID,OAUTH_GOOGLE_CLIENT_SECRET,CORS_ALLOW_ORIGIN,OAUTH_PRIVATE_KEY,OAUTH_PUBLIC_KEY,OAUTH_PASSPHRASE,OAUTH_ENCRYPTION_KEY,API_KEY,OAUTH_CLIENT_ID,OAUTH_CLIENT_SECRET,TEST_USER_ID,TEST_PASSWORD"
USER
"hasicskasoutez"

Parent Request

Return to parent request (token = def506)

Key Value
_controller
"App\Controller\SoutezController::rezervace"
_firewall_context
"security.firewall.map.context.main"
_remove_csp_headers
true
_route
"app_soutez_rezervace"
_route_params
[
  "slug" => "brezi-2024"
]
_security_firewall_run
"_security_main"
_stopwatch_token
"f17b96"
slug
"brezi-2024"