https://cz-dev.azdoucovani.cz/hlidaci-pes/vytvorit/decin

ErrorController

Request

GET Parameters

No GET parameters

POST Parameters

No POST parameters

Uploaded Files

No files were uploaded

Request Attributes

Key Value
_controller
"error_controller"
_locale
"cs"
_route_params
[
  "_locale" => "cs"
]
_stopwatch_token
"346efb"
exception
Twig\Error\RuntimeError {#2817
  #message: "An exception has been thrown during the rendering of a template ("Can't get a way to read the property "slug" in class "Doctrine\Common\Collections\ArrayCollection".")."
  #code: 0
  #file: "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/CoreBundle/Resources/views/navbar.html.twig"
  #line: 3
  -previous: Symfony\Component\PropertyAccess\Exception\NoSuchPropertyException {#3185 …}
  -lineno: 3
  -name: "@TutorkaCore/navbar.html.twig"
  -rawMessage: "An exception has been thrown during the rendering of a template ("Can't get a way to read the property "slug" in class "Doctrine\Common\Collections\ArrayCollection".")."
  -sourcePath: "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/CoreBundle/Resources/views/navbar.html.twig"
  -sourceCode: """
    {% trans_default_domain 'layout' %}\n
    \n
    {{ render(controller('App\\Tutorka\\Bundle\\CoreBundle\\Controller\\SearchController::mobileSearchAction', {'extended': app.request.attributes.get('_route') == 'advert_list'})) }}\n
    \n
    <nav class="navbar navbar-expand-lg navbar-dark main-horizontal-navbar bg-primary-gradient {{ navbarClasses }}">\n
        <div class="{{ navbarContainerClasses }}">\n
            <button class="navbar-toggler text-white">\n
                <i class="fas fa-bars navbar-toggle-icon"></i>\n
            </button>\n
            <a class="navbar-brand navbar-tutorka-logo" href="{{ path('homepage') }}">\n
                <img src="{{ asset('build/images/logo_white.svg') }}" alt="">\n
            </a>\n
            {{ include('@TutorkaCore/navbarContent.inner.html.twig') }}\n
            {{ include('@TutorkaCore/sideNavbarContent.inner.html.twig') }}\n
    \n
            <ul class="navbar-nav main-vertical-navbar hidden-mobile">\n
                {% if is_granted('IS_AUTHENTICATED_FULLY') %}\n
    {#            TODO: notifications #}\n
    \n
    {#                <li class="nav-item">#}\n
    {#                    <a class="nav-link" href="#">#}\n
    {#                        <i class="fas fa-bell"></i>#}\n
    {#                    </a>#}\n
    {#                </li>#}\n
                    <li class="nav-item dropdown">\n
                        <a class="nav-link dropdown-toggle mainNavbar__avatarLink" href="#" id="userSubnavbar"\n
                           data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">\n
                            <img src="{{ app.user.avatarUrl ?: asset('build/images/avatar.png') }}" class="mainNavbar__avatar"\n
                                 alt="{{ app.user.firstName }}">\n
                            <span class="mainNavbar__avatarTitle">{{ app.user.firstName }}</span>\n
                        </a>\n
                        <div class="dropdown-menu dropdown-menu-right position-absolute mt-2" aria-labelledby="userSubnavbar">\n
                            <div class="dropdown-arrow-up"></div>\n
                            {% if app.user.isTeacher and app.user.hasVerifiedEmail %}\n
                                <a class="dropdown-item" href="{{ path('user_profile', {'username': app.user.username }) }}">\n
                                    <span class="far fa-user-circle"></span>\n
                                    {{ 'navbar.user.showProfile'|trans }}\n
                                </a>\n
                            {% endif %}\n
                            <a class="dropdown-item" href="{{ path('user_dashboard') }}">\n
                                <span class="far fa-user-circle"></span>\n
                                {{ 'navbar.user.dashboard'|trans }}\n
                            </a>\n
                            <a class="dropdown-item" href="{{ path('user_personal_data') }}">\n
                                <span class="fas fa-user-cog"></span>\n
                                {{ 'navbar.user.myAccount'|trans }}\n
                            </a>\n
                            {% if app.user.isTeacher %}\n
                                <a class="dropdown-item" href="{{ path('user_my_advert_offers_published') }}">\n
                                    <span class="fas fa-graduation-cap"></span>\n
                                    {{ 'navbar.user.myAdverts'|trans }}\n
                                </a>\n
                            {% else %}\n
                                <a class="dropdown-item" href="{{ path('user_my_advert_demands') }}">\n
                                    <span class="fas fa-graduation-cap"></span>\n
                                    {{ 'navbar.user.myAdverts'|trans }}\n
                                </a>\n
                            {% endif %}\n
                            {% if is_granted('ROLE_ADMIN') %}\n
                                <a class="dropdown-item" href="{{ path('admin_dashboard') }}">\n
                                    <span class="fas fa-wrench"></span>\n
                                    {{ 'navbar.user.adminDashboard'|trans }}\n
                                </a>\n
                            {% endif %}\n
                            <div class="dropdown-divider"></div>\n
                            <a class="dropdown-item" href="{{ path('logout') }}">\n
                                <span class="fas fa-sign-out-alt text-danger"></span>\n
                                {{ 'navbar.user.logout'|trans }}\n
                            </a>\n
                        </div>\n
                    </li>\n
    {#            {% else %}#}\n
    {#                <li class="nav-item">#}\n
    {#                    <a class="nav-link" href="{{ path('login') }}">#}\n
    {#                        {{ 'navbar.user.login'|trans }}#}\n
    {#                    </a>#}\n
    {#                </li>#}\n
                {% endif %}\n
            </ul>\n
            <ul class="navbar-nav flex-row main-vertical-navbar hidden-desktop">\n
                {% if is_granted('IS_AUTHENTICATED_FULLY') %}\n
                    <li class="nav-item">\n
                        <a class="nav-link mainNavbar__avatarLink" href="{{ path('user_dashboard') }}">\n
                            <img src="{{ app.user.avatarUrl ?: asset('build/images/avatar.png') }}" class="mainNavbar__avatar mr-3"\n
                                 alt="{{ app.user.firstName }}">\n
                        </a>\n
                    </li>\n
                {% endif %}\n
                <li class="nav-item">\n
                    <a class="nav-link btn-mobile-search" href="#">\n
                        <i class="fas fa-search search-icon"></i>\n
                    </a>\n
                </li>\n
            </ul>\n
        </div>\n
    </nav>\n
    \n
    {#{% if is_granted('IS_AUTHENTICATED_FULLY') %}#}\n
    {#    {{ include('@TutorkaCore/navbarBottom.html.twig') }}#}\n
    {#{% endif %}#}\n
    """
  trace: {
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/CoreBundle/Resources/views/navbar.html.twig:3 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › 
      › {{ render(controller('App\\Tutorka\\Bundle\\CoreBundle\\Controller\\SearchController::mobileSearchAction', {'extended': app.request.attributes.get('_route') == 'advert_list'})) }}}
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:367 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …13]
        $blocks: [ …4]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:379 {
      Twig\Template->render(array $context) …
      › try {    $this->display($context);} catch (\Throwable $e) {
      arguments: {
        $context: [ …1]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/TemplateWrapper.php:40 {
      Twig\TemplateWrapper->render(array $context = []): string …
      ›     // as it should only be used by internal code    return $this->template->render($context, \func_get_args()[1] ?? []);}
      arguments: {
        $context: [ …1]
        ...: {
          []
        }
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Extension/CoreExtension.php:1321 {
      twig_include(Environment $env, $context, $template, $variables = [], $withContext = true, $ignoreMissing = false, $sandboxed = false) …
      › 
      ›     return $loaded ? $loaded->render($variables) : '';} finally {
      arguments: {
        $context: [ …18]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/var/cache/dev/twig/f4/f40e7eae23371fb342c4d4b3d1c48032.php:112 {
      __TwigTemplate_97359c8daa30f167234a258d74b6f765->block_body($context, array $blocks = []) …
      › echo "        ";echo twig_include($this->env, $context, "@TutorkaCore/navbar.html.twig", ["navbarContainerClass" => (isset($context["navbarContainerClasses"]) || array_key_exists("navbarContainerClasses", $context) ? $context["navbarContainerClasses"] : (function () { throw new RuntimeError('Variable "navbarContainerClasses" does not exist.', 14, $this->source); })())]);echo "
      arguments: {
        $env: Twig\Environment {#433 …}
        $context: [ …17]
        $template: "@TutorkaCore/navbar.html.twig"
        $variables: [ …18]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:171 {
      Twig\Template->displayBlock($name, array $context, array $blocks = [], $useBlocks = true, self $templateContext = null) …
      › try {    $template->$block($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …17]
        $blocks: [ …5]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/CoreBundle/Resources/views/base.html.twig:24 {
      __TwigTemplate_296a92668c4f6a90177c7941e0e9596e->doDisplay(array $context, array $blocks = []) …
      › <body class="{{ bodyClass is defined and bodyClass ? bodyClass : ""}}">    {% block body %}{% endblock %}    {% block footer %}{% endblock %}
      arguments: {
        $name: "body"
        $context: [ …13]
        $blocks: [ …5]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:394 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …13]
        $blocks: [ …4]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:367 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …13]
        $blocks: [ …4]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/var/cache/dev/twig/f4/f40e7eae23371fb342c4d4b3d1c48032.php:51 {
      __TwigTemplate_97359c8daa30f167234a258d74b6f765->doDisplay(array $context, array $blocks = []) …
      › $this->parent = $this->loadTemplate("@TutorkaCore/base.html.twig", "@TutorkaCore/layout/standard_width_layout.html.twig", 1);$this->parent->display($context, array_merge($this->blocks, $blocks));arguments: {
        $context: [ …13]
        $blocks: [ …5]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:394 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …13]
        $blocks: [ …4]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:367 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …13]
        $blocks: [ …4]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/var/cache/dev/twig/63/638092a20bb179390482e53e4d8714d9.php:51 {
      __TwigTemplate_f470421c8228cddb384563577659e034->doDisplay(array $context, array $blocks = []) …
      › $this->parent = $this->loadTemplate("@TutorkaCore/layout/standard_width_layout.html.twig", "@TutorkaContent/Advert/createWatchDog.html.twig", 1);$this->parent->display($context, array_merge($this->blocks, $blocks));arguments: {
        $context: [ …13]
        $blocks: [ …4]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:394 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …13]
        $blocks: [ …4]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:367 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …13]
        $blocks: [ …4]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Template.php:379 {
      Twig\Template->render(array $context) …
      › try {    $this->display($context);} catch (\Throwable $e) {
      arguments: {
        $context: [ …1]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/TemplateWrapper.php:40 {
      Twig\TemplateWrapper->render(array $context = []): string …
      ›     // as it should only be used by internal code    return $this->template->render($context, \func_get_args()[1] ?? []);}
      arguments: {
        $context: [ …1]
        ...: {
          []
        }
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/twig/twig/src/Environment.php:277 {
      Twig\Environment->render($name, array $context = []): string …
      › {    return $this->load($name)->render($context);}
      arguments: {
        $context: [ …1]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php:115 {
      Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener->onKernelView(KernelEvent $event) …
      › } else {    $event->setResponse(new Response($this->twig->render($template->getTemplate(), $parameters)));}
      arguments: {
        $name: "@TutorkaContent/Advert/createWatchDog.html.twig"
        $context: [ …1]
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117 {
      Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
      › 
      › ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#2814 …}
        ...: {
          "kernel.view"
          Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#539 …}
        }
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php:230 {
      Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event) …
      ›     }    $listener($event, $eventName, $this);}
      arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#2814 …}
        $eventName: "kernel.view"
        $dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#539 …}
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php:59 {
      Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, string $eventName = null): object …
      › if ($listeners) {    $this->callListeners($listeners, $eventName, $event);}
      arguments: {
        $listeners: [ …1]
        $eventName: "kernel.view"
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#2814 …}
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154 {
      Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, string $eventName = null): object …
      › try {    $this->dispatcher->dispatch($event, $eventName);} finally {
      arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#2814 …}
        $eventName: "kernel.view"
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php:157 {
      Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
      › $event = new ViewEvent($this, $request, $type, $response);$this->dispatcher->dispatch($event, KernelEvents::VIEW);arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#2814 …}
        $eventName: "kernel.view"
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php:74 {
      Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true) …
      › try {    return $this->handleRaw($request, $type);} catch (\Exception $e) {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#53 …}
        $type: 1
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php:202 {
      Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true) …
      › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#53 …}
        $type: 1
        $catch: true
      }
    }
    /data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php:25 {$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#53 …}
      }
    }
  }
}
logger
Symfony\Bridge\Monolog\Logger {#477 …6}

Request Headers

Header Value
accept
"*/*"
accept-encoding
"gzip, br, zstd, deflate"
connection
"close"
host
"cz-dev.azdoucovani.cz"
https
"1"
max-forwards
"7"
user-agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
ws-geo-country
"US"
x-forwarded-for
"18.116.80.183, 18.116.80.183"
x-forwarded-host
"cz-dev.azdoucovani.cz"
x-forwarded-proto
"https"
x-forwarded-server
"cz-dev.azdoucovani.cz"
x-php-ob-level
"1"
x-proxy-ip
"10.20.5.1"
x-real-ip
"18.116.80.183"

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
"Fri, 04 Apr 2025 13:41:41 GMT"
x-debug-exception
"An%20exception%20has%20been%20thrown%20during%20the%20rendering%20of%20a%20template%20%28%22Can%27t%20get%20a%20way%20to%20read%20the%20property%20%22slug%22%20in%20class%20%22Doctrine%5CCommon%5CCollections%5CArrayCollection%22.%22%29."
x-debug-exception-file
"%2Fdata%2Fa%2Fc%2Facf2e415-79a8-45db-b8ed-d9da9b62de05%2Fazdoucovani.cz%2Fsub%2Fcz-dev%2Fsrc%2FTutorka%2FBundle%2FCoreBundle%2FResources%2Fviews%2Fnavbar.html.twig:3"
x-debug-token
"ddb30d"

Cookies

Request Cookies

No request cookies

Response Cookies

No response cookies

Session 12

Session Metadata

Key Value
Created
"Fri, 04 Apr 25 15:41:40 +0200"
Last used
"Fri, 04 Apr 25 15:41:40 +0200"
Lifetime
0

Session Attributes

Attribute Value
_csrf/https-watch_dog
"SYDG6cVW5opSPwT1sem9lFGi0SepOmnR71vtypvFKI4"
_locale
"cs"
user
"a007a7cb-ec75-4adb-8b57-9fb06c191f5b"

Session Usage

12 Usages
Stateless check enabled
Usage
ContainerDjkJqtw\getSession_FlashBagService:24
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/var/cache/dev/ContainerDjkJqtw/getSession_FlashBagService.php"
    "line" => 24
    "function" => "getFlashBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/var/cache/dev/ContainerDjkJqtw/App_KernelDevDebugContainer.php"
    "line" => 525
    "function" => "do"
    "class" => "ContainerDjkJqtw\getSession_FlashBagService"
    "type" => "::"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/var/cache/dev/ContainerDjkJqtw/App_KernelDevDebugContainer.php"
    "line" => 713
    "function" => "load"
    "class" => "ContainerDjkJqtw\App_KernelDevDebugContainer"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/var/cache/dev/ContainerDjkJqtw/App_KernelDevDebugContainer.php"
    "line" => 1593
    "function" => "get_Container_Private_TwigService"
    "class" => "ContainerDjkJqtw\App_KernelDevDebugContainer"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/var/cache/dev/ContainerDjkJqtw/App_KernelDevDebugContainer.php"
    "line" => 1051
    "function" => "getMaintenanceListenerService"
    "class" => "ContainerDjkJqtw\App_KernelDevDebugContainer"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 245
    "function" => "ContainerDjkJqtw\{closure}"
    "class" => "ContainerDjkJqtw\App_KernelDevDebugContainer"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 76
    "function" => "sortListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 293
    "function" => "getListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 148
    "function" => "preProcess"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 128
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage:44
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-core/Authentication/Token/Storage/UsageTrackingTokenStorage.php"
    "line" => 44
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-http/Firewall/AccessListener.php"
    "line" => 87
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php"
    "line" => 49
    "function" => "authenticate"
    "class" => "Symfony\Component\Security\Http\Firewall\AccessListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-http/Firewall/AbstractListener.php"
    "line" => 26
    "function" => "authenticate"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php"
    "line" => 73
    "function" => "__invoke"
    "class" => "Symfony\Component\Security\Http\Firewall\AbstractListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-http/Firewall.php"
    "line" => 92
    "function" => "callListeners"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelRequest"
    "class" => "Symfony\Component\Security\Http\Firewall"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 128
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
App\Tutorka\Bundle\CoreBundle\Helper\UserTokenHelper:27
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/CoreBundle/Helper/UserTokenHelper.php"
    "line" => 27
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/CoreBundle/EventSubscriber/UserTokenSubscriber.php"
    "line" => 32
    "function" => "createToken"
    "class" => "App\Tutorka\Bundle\CoreBundle\Helper\UserTokenHelper"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onRequest"
    "class" => "App\Tutorka\Bundle\CoreBundle\EventSubscriber\UserTokenSubscriber"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 128
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
App\Tutorka\Bundle\CoreBundle\Helper\UserTokenHelper:32
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/CoreBundle/Helper/UserTokenHelper.php"
    "line" => 32
    "function" => "set"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/CoreBundle/EventSubscriber/UserTokenSubscriber.php"
    "line" => 32
    "function" => "createToken"
    "class" => "App\Tutorka\Bundle\CoreBundle\Helper\UserTokenHelper"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onRequest"
    "class" => "App\Tutorka\Bundle\CoreBundle\EventSubscriber\UserTokenSubscriber"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 128
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
App\Tutorka\Bundle\CoreBundle\EventListener\LocaleListener:20
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/CoreBundle/EventListener/LocaleListener.php"
    "line" => 20
    "function" => "set"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelControllerArguments"
    "class" => "App\Tutorka\Bundle\CoreBundle\EventListener\LocaleListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 147
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:101
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 101
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 72
    "function" => "hasToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/ContentBundle/Controller/AdvertWatchDogController.php"
    "line" => 69
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 152
    "function" => "create"
    "class" => "App\Tutorka\Bundle\ContentBundle\Controller\AdvertWatchDogController"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:88
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 88
    "function" => "set"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 77
    "function" => "setToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/src/Tutorka/Bundle/ContentBundle/Controller/AdvertWatchDogController.php"
    "line" => 69
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 152
    "function" => "create"
    "class" => "App\Tutorka\Bundle\ContentBundle\Controller\AdvertWatchDogController"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:72
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 72
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 99
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 185
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 173
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 213
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 85
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:73
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 73
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 99
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 185
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 173
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 213
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 85
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:74
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 74
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 99
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 185
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 173
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 213
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 85
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:75
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 75
    "function" => "all"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 99
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 185
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 173
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 213
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 85
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:76
[
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 76
    "function" => "getFlashBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 99
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 185
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 173
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 74
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 85
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 213
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 85
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
    "line" => 25
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]

Flashes

Flashes

No flash messages were created.

Server Parameters

Server Parameters

Defined in .env

Key Value
ANALYTICS_TRACKING_CODE
""
APP_ENV
"dev"
APP_LOCALE
"cs"
APP_SECRET
"81068727cc6690378259af775c87d209"
CACHE_MEMCACHED_HOST
"memcached://judzi:Hafanan2K20@80.211.215.27:11211"
DATABASE_URL
"mysql://tutorka_dev_cz:2YitKvyQPKProvTdndUTmjbA29@mariadb103.websupport.sk:3313/tutorka_dev_cz?serverVersion=mariadb-10.3.7"
GOPAY_CLIENT_ID
"1448671510"
GOPAY_CLIENT_SECRET
"RUpZWEDG"
GOPAY_GOID
"8101506424"
GOPAY_SECURE_KEY
"T3F7SWrkkUcZHGwWRBRhZFhM"
HOTJAR_ENABLED
"1"
HOTJAR_SITE_ID
"1676976"
MAILER_DSN
"sendmail://default"
MAILER_URL
"smtp://smtp.websupport.cz:25?username=info@azdoucovani.cz&password=Praha2018"
ORDERS_ENABLED
"1"
RECAPTCHA3_ENABLED
"true"
RECAPTCHA3_SECRET
"6LdrmeQUAAAAAC_hXc9O0oB26nP18cbn4etzCRd_"
RECAPTCHA3_SITE_KEY
"6LdrmeQUAAAAAO8RCTHzsd-yw1tZtIDuyoibjbUb"
SENTRY_DSN
"https://658c3a99b5024ecb96154d59cf75985a@o263956.ingest.sentry.io/1465325"
SENTRY_ENABLED
"0"
SESSION_MAX_IDLE_TIME
"6000"
TUTORKA_ADMIN_EMAIL
"admin@azdoucovani.cz"
TUTORKA_API_PASSWORD
"hafanana"
TUTORKA_API_URL
"https://api.azdoucovani.cz"
TUTORKA_API_USERNAME
"tutorkacz"
TUTORKA_CZ_URL
"https://cz-dev.azdoucovani.cz"
TUTORKA_SK_URL
"https://sk-dev.azdoucovani.cz"

Defined as regular env variables

Key Value
APP_DEBUG
"1"
BASE
"/public"
CONTEXT_DOCUMENT_ROOT
"/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev"
CONTEXT_PREFIX
""
DOCROOT
"/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev"
DOCUMENT_ROOT
"/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev"
GATEWAY_INTERFACE
"CGI/1.1"
GEOIP_COUNTRY_CODE
"US"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_CONNECTION
"close"
HTTP_HOST
"cz-dev.azdoucovani.cz"
HTTP_HTTPS
"1"
HTTP_MAX_FORWARDS
"7"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_WS_GEO_COUNTRY
"US"
HTTP_X_FORWARDED_FOR
"18.116.80.183, 18.116.80.183"
HTTP_X_FORWARDED_HOST
"cz-dev.azdoucovani.cz"
HTTP_X_FORWARDED_PROTO
"https"
HTTP_X_FORWARDED_SERVER
"cz-dev.azdoucovani.cz"
HTTP_X_PROXY_IP
"10.20.5.1"
HTTP_X_REAL_IP
"18.116.80.183"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
PHP_SELF
"/public/index.php"
QUERY_STRING
""
REDIRECT_BASE
"/public"
REDIRECT_DOCROOT
"/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev"
REDIRECT_GEOIP_COUNTRY_CODE
"US"
REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_DOCROOT
"/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev"
REDIRECT_REDIRECT_GEOIP_COUNTRY_CODE
"US"
REDIRECT_REDIRECT_HTTPS
"on"
REDIRECT_REDIRECT_STATUS
"200"
REDIRECT_REDIRECT_UNIQUE_ID
"Z-_hlLVBAc52BHwZFkmwngAAAAc"
REDIRECT_REDIRECT_filter-errordocs
""
REDIRECT_STATUS
"200"
REDIRECT_UNIQUE_ID
"Z-_hlLVBAc52BHwZFkmwngAAAAc"
REDIRECT_URL
"/public/hlidaci-pes/vytvorit/decin"
REDIRECT_filter-errordocs
""
REMOTE_ADDR
"18.116.80.183"
REMOTE_PORT
"58310"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_TIME
1743774100
REQUEST_TIME_FLOAT
1743774100.87
REQUEST_URI
"/hlidaci-pes/vytvorit/decin"
SCRIPT_FILENAME
"/data/a/c/acf2e415-79a8-45db-b8ed-d9da9b62de05/azdoucovani.cz/sub/cz-dev/public/index.php"
SCRIPT_NAME
"/public/index.php"
SERVER_ADDR
"127.0.0.1"
SERVER_ADMIN
"admin@websupport.sk"
SERVER_NAME
"cz-dev.azdoucovani.cz"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache"
SYMFONY_DOTENV_VARS
"APP_LOCALE,APP_ENV,APP_SECRET,MAILER_URL,MAILER_DSN,DATABASE_URL,TUTORKA_ADMIN_EMAIL,TUTORKA_API_URL,TUTORKA_API_USERNAME,TUTORKA_API_PASSWORD,TUTORKA_CZ_URL,TUTORKA_SK_URL,SENTRY_ENABLED,SENTRY_DSN,SESSION_MAX_IDLE_TIME,ANALYTICS_TRACKING_CODE,HOTJAR_ENABLED,HOTJAR_SITE_ID,RECAPTCHA3_SITE_KEY,RECAPTCHA3_SECRET,RECAPTCHA3_ENABLED,GOPAY_GOID,GOPAY_SECURE_KEY,GOPAY_CLIENT_ID,GOPAY_CLIENT_SECRET,ORDERS_ENABLED,CACHE_MEMCACHED_HOST"
UNIQUE_ID
"Z-_hlLVBAc52BHwZFkmwngAAAAc"
argc
0
argv
[]
filter-errordocs
""

Parent Request

Return to parent request (token = 65f995)

Key Value
_controller
"App\Tutorka\Bundle\ContentBundle\Controller\AdvertWatchDogController::create"
_firewall_context
"security.firewall.map.context.main"
_locale
"cs"
_remove_csp_headers
true
_route
"advert_watch_dog_create"
_route_params
[
  "filterContainer" => "decin"
  "_locale" => "cs"
]
_security_firewall_run
"_security_main"
_stopwatch_token
"97b28b"
_template
Sensio\Bundle\FrameworkExtraBundle\Configuration\Template {#1442
  #template: "@TutorkaContent/Advert/createWatchDog.html.twig"
  -vars: []
  -streamable: false
  -owner: [
    App\Tutorka\Bundle\ContentBundle\Controller\AdvertWatchDogController {#1032
      #container: Symfony\Component\DependencyInjection\Argument\ServiceLocator {#1397 …}
      -watchDogService: App\Tutorka\Bundle\ContentBundle\Service\WatchDogService {#1031 …}
    }
    "create"
  ]
}
error
500
filterContainer
App\Tutorka\Bundle\ContentBundle\Request\Filter\FilterContainer {#1402
  -processor: App\Tutorka\Bundle\ContentBundle\Request\Filter\FilterProcessor {#1403 …}
}