Symfony Exception

RuntimeError

HTTP 500 Internal Server Error

Impossible to invoke a method ("hasRole") on a null variable.

Exception

Twig\Error\ RuntimeError

Show exception properties
Twig\Error\RuntimeError {#980
  -lineno: 216
  -name: "front/user/view.html.twig"
  -rawMessage: "Impossible to invoke a method ("hasRole") on a null variable."
  -sourcePath: "/home/innerson/www/tcg.events/templates/front/user/view.html.twig"
  -sourceCode: """
    {% extends 'front/front_layout.html.twig' %}\n
    \n
    {% block website_title -%}\n
        {%- if user is defined and user is not empty -%}\n
            {{- user.displayName -}}\n
        {%- endif -%}\n
    {%- endblock %}\n
    \n
    {% block global_limiter_class %}{% endblock %}\n
    \n
    {% block main_container_class %}{% endblock %}\n
    \n
    {% block content %}\n
        {% if user is defined and user is not empty %}\n
            <div class="main-column-limiter">\n
                <div class="w-full pb-4 lg:pb-8">\n
                    <h1>\n
                        {{- user.displayName -}}\n
                        {%- if user.hasRole('TOURNAMENT_MANAGER') -%}\n
                            <br/>\n
                            <span class="text-lg">\n
                            {{- 'admin.user.roles.ROLE_TOURNAMENT_MANAGER'|trans -}}\n
                        </span>\n
                        {%- endif -%}\n
                    </h1>\n
                </div>\n
            </div>\n
            <div class="user-magnifier bg-transluent">\n
                <div class="main-column-limiter gradient-background flex justify-between flex-row flex-wrap">\n
                    <div class="w-full lg:w-1/2">\n
                        {% if user.picture is not empty %}\n
                            <img class="w-full" src="{{ asset(globals_uploads_users_picture_directory ~ user.picture)|imagine_filter('800x800') }}" alt="User {{ user.displayName|e('html_attr') }} profile picture"/>\n
                        {% else %}\n
                            <div class="user-header-no-banner bg-theme w-full h-full flex justify-center">\n
                                <img class="inline-block opacity-30" src="{{ asset('build/images/tcg_events_logo_square.png') }}" alt="MTGDC.events logo"/>\n
                            </div>\n
                        {% endif %}\n
                    </div>\n
                    <div class="user-header-title w-full lg:w-1/2 relative">\n
                        <div class="p-4 text-lg flex flex-col justify-between lg:leading-9">\n
                            <div>\n
                                <span class="icon-user"></span>\n
                                {{ 'front.users.info.type.text'|trans({'%type%': user.type})|striptags('<strong><em>')|raw }}\n
                            </div>\n
                            <div>\n
                                <span class="icon-calendar"></span>\n
                                {{ 'front.users.info.member_since.text'|trans({'%date%': user.created|date('d/m/Y')})|striptags('<strong><em>')|raw }}\n
                            </div>\n
                            {% if user.hasRole('ROLE_TOURNAMENT_MANAGER') %}\n
                                <div>\n
                                    <span class="icon-bullseye"></span>\n
                                    <span class="text-theme-danger_light"> {{ 'admin.user.roles.ROLE_TOURNAMENT_MANAGER'|trans }}</span>\n
                                </div>\n
                            {% endif %}\n
                            {% if user.hasRole('ROLE_ADMIN') %}\n
                                <div>\n
                                    <span class="icon-bullseye"></span>\n
                                    <span class="text-theme-flash_notice_back"> {{ 'admin.user.roles.ROLE_ADMIN'|trans }}</span>\n
                                </div>\n
                            {% endif %}\n
                            {% if user.firstName is not empty or user.lastName is not empty %}\n
                                <div>\n
                                    <span class="icon-user"></span>\n
                                    {{ 'front.users.info.name.text'|trans({'%name%': user.firstName ~ ' ' ~ user.lastName})|striptags('<strong><em>')|raw }}\n
                                </div>\n
                            {% endif %}\n
                            {% if user.address is not empty %}\n
                                <div>\n
                                    <span class="icon-globe-inv"></span>\n
                                    {{ 'front.users.info.address.text'|trans({'%link%': 'https://www.google.com/maps/search/?q=' ~ user.address|striptags|url_encode, '%address%': user.address})|striptags('<strong><em>')|raw }}\n
                                </div>\n
                            {% endif %}\n
                            {% if user.favoriteFormat is not empty %}\n
                                <div>\n
                                    <span class="icon-star"></span>\n
                                    {{ 'front.users.info.favorite_format.text'|trans({'%user%': user.displayName, '%format%': user.favoriteFormatAsString|trans})|striptags('<strong><em>')|raw }}\n
                                </div>\n
                            {% endif %}\n
                            <div>\n
                                <span class="icon-info"></span>\n
                                {{ 'front.users.info.contact.text'|trans|raw }}\n
                                <p class="pl-8">\n
                                    {% if user.contactEmail is not empty %}\n
                                        <span class="icon-mail"></span>\n
                                        <a href="mailto:{{ user.contactEmail }}" title="{{ 'front.users.info.email.title'|trans({'%user%': user.displayName}) }}">\n
                                            {{ user.contactEmail|replace({'@': '_at_', '.': '_dot_'}) }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.phone is not empty %}\n
                                        <br/>\n
                                        <span class="icon-mobile"></span>\n
                                        <a href="tel:{{ user.phone }}" title="{{ 'front.users.info.phone.title'|trans({'%user%': user.displayName}) }}">\n
                                            {{ user.phone }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.website is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.website }}" title="{{ 'front.users.info.website.title'|trans }}">\n
                                            {{ user.website }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.facebookLink is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.facebookLink }}" title="{{ 'front.users.info.social_link.title'|trans }}">\n
                                            {{ user.facebookLink }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.instagramLink is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.instagramLink }}" title="{{ 'front.users.info.social_link.title'|trans }}">\n
                                            {{ user.instagramLink }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.twitterLink is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.twitterLink }}" title="{{ 'front.users.info.social_link.title'|trans }}">\n
                                            {{ user.twitterLink }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.youtubeLink is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.youtubeLink }}" title="{{ 'front.users.info.social_link.title'|trans }}">\n
                                            {{ user.youtubeLink }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.tiktokLink is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.tiktokLink }}" title="{{ 'front.users.info.social_link.title'|trans }}">\n
                                            {{ user.tiktokLink }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.weiboLink is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.weiboLink }}" title="{{ 'front.users.info.social_link.title'|trans }}">\n
                                            {{ user.weiboLink }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.vkLink is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.vkLink }}" title="{{ 'front.users.info.social_link.title'|trans }}">\n
                                            {{ user.vkLink }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.discordLink is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.discordLink }}" title="{{ 'front.users.info.social_link.title'|trans }}">\n
                                            {{ user.discordLink }}\n
                                        </a>\n
                                    {% endif %}\n
                                    {% if user.redditLink is not empty %}\n
                                        <br/>\n
                                        <span class="icon-link"></span>\n
                                        <a href="{{ user.redditLink }}" title="{{ 'front.users.info.social_link.title'|trans }}">\n
                                            {{ user.redditLink }}\n
                                        </a>\n
                                    {% endif %}\n
                                </p>\n
                            </div>\n
                        </div>\n
                    </div>\n
                </div>\n
            </div>\n
    \n
            {% if user.hasRole('ROLE_TOURNAMENT_MANAGER') %}\n
                <div class="bg-theme-medium_dark">\n
                    <div class="main-column-limiter bg-theme-medium_light shadow-xl">\n
                        <div class="py-4 flex justify-center">\n
                            <a\n
                                class="btn btn-list"\n
                                title="{{ 'front.users.info.tournaments.title'|trans({'%user%': user.displayName}) }}"\n
                                href="{{ url('users_tournaments', {'slug': user.slug}) }}"\n
                            >\n
                                {{ 'front.users.info.tournaments.text'|trans({'%user%': user.displayName}) }}\n
                            </a>\n
                        </div>\n
                    </div>\n
                </div>\n
            {% endif %}\n
    \n
            {% if user.bio is defined and user.bio is not empty %}\n
                <div class="bg-theme-medium_dark">\n
                    <div class="main-column-limiter bg-theme-medium_dark_hover shadow-xl">\n
                        <div class="p-1 lg:p-4">\n
                            <h2 class="mb-10"><span class="icon-info"></span> {{ 'front.users.forms.edit.bio.label'|trans }}</h2>\n
                            <div class="text-base pb-4">\n
                                {{ user.bio|striptags('<br><p><table><tbody><thead><tfoot><tr><th><td><caption><col><colgroup><hr><strong><em><s><ul><ol><li><blockquote><a>')|raw }}\n
                            </div>\n
                        </div>\n
                    </div>\n
                </div>\n
            {% endif %}\n
    \n
            {% if user.address is defined and user.address is not empty and user.address.latitude is defined and user.address.latitude is not empty and user.address.longitude is defined and user.address.longitude is not empty %}\n
                <div class="shadow-xl bg-transluent">\n
                    <div class="main-column-limiter">\n
                        <iframe class="border-0 border-transparent" width="100%" height="500px" src="https://www.openstreetmap.org/export/embed.html?bbox={{ user.address.longitude - 0.001 }}%2C{{ user.address.latitude - 0.001 }}%2C{{ user.address.longitude + 0.001 }}%2C{{ user.address.latitude + 0.001 }}&amp;layer=mapnik&amp;marker={{ user.address.latitude }},{{ user.address.longitude }}"></iframe>\n
                    </div>\n
                </div>\n
            {% endif %}\n
    \n
            <div class="bg-theme-medium_dark">\n
                <div class="main-column-limiter bg-theme-medium_dark_hover shadow-xl py-6">\n
                    &nbsp;\n
                </div>\n
            </div>\n
    \n
            {% if user is same as(app.user) or app.user.hasRole('ROLE_ADMIN') %}\n
                <div class="section-separator transparent-section-separator"></div>\n
                <div class="main-column-limiter">\n
                    <div class="actions-fieldset">\n
                        {% if is_granted('ROLE_TOURNAMENT_MANAGER') %}\n
                            {{ include('front/events/tournaments/_user_actions.html.twig') }}\n
                        {% endif %}\n
                    </div>\n
                </div>\n
            {% endif %}\n
    \n
        {% endif %}\n
    {% endblock %}\n
    """
}
  1.             <div class="main-column-limiter bg-theme-medium_dark_hover shadow-xl py-6">
  2.                 &nbsp;
  3.             </div>
  4.         </div>
  5.         {% if user is same as(app.user) or app.user.hasRole('ROLE_ADMIN') %}
  6.             <div class="section-separator transparent-section-separator"></div>
  7.             <div class="main-column-limiter">
  8.                 <div class="actions-fieldset">
  9.                     {% if is_granted('ROLE_TOURNAMENT_MANAGER') %}
  10.                         {{ include('front/events/tournaments/_user_actions.html.twig') }}
  1.             </div>
  2.         </div>
  3.         ";
  4.             // line 216
  5.             if ((((isset($context["user"]) || array_key_exists("user"$context) ? $context["user"] : (function () { throw new RuntimeError('Variable "user" does not exist.'216$this->source); })()) === twig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'216$this->source); })()), "user", [], "any"falsefalsefalse216)) || twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["app"]) || array_key_exists("app"$context) ? $context["app"] : (function () { throw new RuntimeError('Variable "app" does not exist.'216$this->source); })()), "user", [], "any"falsefalsefalse216), "hasRole", ["ROLE_ADMIN"], "method"falsefalsefalse216))) {
  6.                 // line 217
  7.                 echo "            <div class=\"section-separator transparent-section-separator\"></div>
  8.             <div class=\"main-column-limiter\">
  9.                 <div class=\"actions-fieldset\">
  10.                     ";
in vendor/twig/twig/src/Template.php -> block_content (line 171)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         $this->displayBlock('messages'$context$blocks);
  2.         // line 99
  3.         echo "                            </div>
  4.                             ";
  5.         // line 100
  6.         $this->displayBlock('content'$context$blocks);
  7.         // line 101
  8.         echo "                        </div>
  9.                     </main>
  10.                 </div>
  11.                 ";
in vendor/twig/twig/src/Template.php -> block_body (line 171)
  1.             throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2.         }
  3.         if (null !== $template) {
  4.             try {
  5.                 $template->$block($context$blocks);
  6.             } catch (Error $e) {
  7.                 if (!$e->getSourceContext()) {
  8.                     $e->setSourceContext($template->getSourceContext());
  9.                 }
  1.         // line 68
  2.         $this->displayBlock('body_class'$context$blocks);
  3.         echo "\">
  4.         ";
  5.         // line 69
  6.         $this->displayBlock('body'$context$blocks);
  7.         // line 107
  8.         echo "        <div class=\"hidden\" id=\"audio-players\">
  9.             <audio id=\"confirm-sound-0\" preload=\"none\">
  10.                 <source src=\"";
  11.         // line 109
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $macros $this->macros;
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  3.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/front_layout.html.twig"));
  4.         $this->parent $this->loadTemplate("base.html.twig""front/front_layout.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  8.     }
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
  1.         $macros $this->macros;
  2.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  3.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""front/user/view.html.twig"));
  4.         $this->parent $this->loadTemplate("front/front_layout.html.twig""front/user/view.html.twig"1);
  5.         $this->parent->display($contextarray_merge($this->blocks$blocks));
  6.         
  7.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  8.     }
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.         $this->template $template;
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.         if (null !== $block) {
  2.             return $this->container->get('twig')->load($view)->renderBlock($block$parameters);
  3.         }
  4.         return $this->container->get('twig')->render($view$parameters);
  5.     }
  6.     private function doRender(string $view, ?string $block, array $parameters, ?Response $responsestring $method): Response
  7.     {
  8.         $content $this->doRenderView($view$block$parameters$method);
  1.         return $this->container->get('twig')->render($view$parameters);
  2.     }
  3.     private function doRender(string $view, ?string $block, array $parameters, ?Response $responsestring $method): Response
  4.     {
  5.         $content $this->doRenderView($view$block$parameters$method);
  6.         $response ??= new Response();
  7.         if (200 === $response->getStatusCode()) {
  8.             foreach ($parameters as $v) {
  9.                 if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
  1.      * If an invalid form is found in the list of parameters, a 422 status code is returned.
  2.      * Forms found in parameters are auto-cast to form views.
  3.      */
  4.     protected function render(string $view, array $parameters = [], ?Response $response null): Response
  5.     {
  6.         return $this->doRender($viewnull$parameters$response__FUNCTION__);
  7.     }
  8.     /**
  9.      * Renders a block in a view.
  10.      *
AbstractController->render('front/user/view.html.twig', array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')))) in src/Controller/Front/UserController.php (line 35)
  1.         if ($user === null || empty($user->getRoles()) || ! is_array($user->getRoles()) || ! in_array('ROLE_TOURNAMENT_MANAGER'$user->getRoles(), true)) {
  2.             throw $this->createNotFoundException($translator->trans('front.globals.notfound.message'));
  3.         }
  4.         return $this->render('front/user/view.html.twig', [
  5.             'user'       => $user,
  6.             'breadcrumb' => [
  7.                 [
  8.                     'link'  => $this->generateUrl('front_events_main'),
  9.                     'text'  => $translator->trans('front.menus.front_events_main.text'),
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/innerson/www/tcg.events/vendor/autoload_runtime.php') in public/index.php (line 7)
  1. declare(strict_types 1);
  2. use App\Kernel;
  3. require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
  4. return static function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool)$context['APP_DEBUG']);
  6. };

Logs 1

Level Message
info 14:05:20 User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/symfony/error-handler/DebugClassLoader.php",
        "line": 292,
        "trace": [
            {
                "file": "/home/innerson/www/tcg.events/vendor/doctrine/doctrine-bundle/DoctrineBundle.php",
                "line": 130,
                "function": "loadClass",
                "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader",
                "type": "->"
            }
        ],
        "count": 259
    }
}
info 14:05:20 Matched route "users_view".
{
    "route": "users_view",
    "route_parameters": {
        "_route": "users_view",
        "_controller": "App\\Controller\\Front\\UserController::view",
        "_locale": "en",
        "slug": "new-user-14"
    },
    "request_uri": "https://tcg.events/en/users/view/new-user-14",
    "method": "GET"
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/symfony/security-core/Authorization/AccessDecisionManager.php",
        "line": 30,
        "trace": [
            {
                "function": "handleError",
                "class": "Symfony\\Component\\ErrorHandler\\ErrorHandler",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 14:05:20 Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 1
}
debug 14:05:20 Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\TCGEventsAuthenticator"
}
debug 14:05:20 Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\TCGEventsAuthenticator"
}
info 14:05:20 User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement.
{
    "exception": {}
}
info 14:05:20 User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement.
{
    "exception": {}
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php",
        "line": 38,
        "trace": [
            {
                "function": "handleError",
                "class": "Symfony\\Component\\ErrorHandler\\ErrorHandler",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocParser.php",
        "line": 61,
        "trace": [
            {
                "function": "handleError",
                "class": "Symfony\\Component\\ErrorHandler\\ErrorHandler",
                "type": "->"
            }
        ],
        "count": 2
    }
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocParser.php",
        "line": 157,
        "trace": [
            {
                "function": "handleError",
                "class": "Symfony\\Component\\ErrorHandler\\ErrorHandler",
                "type": "->"
            }
        ],
        "count": 1
    }
}
info 14:05:20 User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement.
{
    "exception": {}
}
info 14:05:20 User Deprecated: The annotation mapping driver is deprecated and will be removed in Doctrine ORM 3.0, please migrate to the attribute or XML driver. (AnnotationDriver.php:68 called by getDoctrine_Orm_DefaultEntityManagerService.php:56, https://github.com/doctrine/orm/issues/10098, package doctrine/orm)
{
    "exception": {}
}
info 14:05:20 User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode also with the AnnotationDriver today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AnnotationDriver.php:78 called by getDoctrine_Orm_DefaultEntityManagerService.php:56, https://github.com/doctrine/orm/pull/10455, package doctrine/orm)
{
    "exception": {}
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/doctrine/dbal/src/Connection.php",
        "line": 60,
        "trace": [
            {
                "function": "handleError",
                "class": "Symfony\\Component\\ErrorHandler\\ErrorHandler",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/doctrine/dbal/src/ArrayParameterType.php",
        "line": 10,
        "trace": [
            {
                "function": "handleError",
                "class": "Symfony\\Component\\ErrorHandler\\ErrorHandler",
                "type": "->"
            }
        ],
        "count": 1
    }
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/symfony/error-handler/DebugClassLoader.php",
        "line": 292,
        "trace": [
            {
                "file": "/home/innerson/www/tcg.events/vendor/doctrine/doctrine-bundle/DoctrineBundle.php",
                "line": 130,
                "function": "loadClass",
                "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader",
                "type": "->"
            }
        ],
        "count": 259
    }
}
info 14:05:20 User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:166 called by EntityManager.php:178, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm)
{
    "exception": {}
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/DefaultTypedFieldMapper.php",
        "line": 29,
        "trace": [
            {
                "function": "handleError",
                "class": "Symfony\\Component\\ErrorHandler\\ErrorHandler",
                "type": "->"
            }
        ],
        "count": 1
    }
}
info 14:05:20 User Deprecated: MySQL 5.6 support is deprecated and will be removed in DBAL 4. Consider upgrading to MySQL 5.7 or later. (AbstractMySQLDriver.php:93 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/5072, package doctrine/dbal)
{
    "exception": {}
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/doctrine/orm/lib/Doctrine/ORM/Persisters/Entity/BasicEntityPersister.php",
        "line": 97,
        "trace": [
            {
                "function": "handleError",
                "class": "Symfony\\Component\\ErrorHandler\\ErrorHandler",
                "type": "->"
            }
        ],
        "count": 2
    }
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/symfony/error-handler/DebugClassLoader.php",
        "line": 292,
        "trace": [
            {
                "file": "/home/innerson/www/tcg.events/vendor/doctrine/doctrine-bundle/DoctrineBundle.php",
                "line": 130,
                "function": "loadClass",
                "class": "Symfony\\Component\\ErrorHandler\\DebugClassLoader",
                "type": "->"
            }
        ],
        "count": 259
    }
}
debug 14:05:20 Warning: Zend OPcache API is restricted by "restrict_api" configuration directive
{
    "exception": {
        "severity": 2,
        "file": "/home/innerson/www/tcg.events/vendor/symfony/property-info/Extractor/ReflectionExtractor.php",
        "line": 64,
        "trace": [
            {
                "function": "handleError",
                "class": "Symfony\\Component\\ErrorHandler\\ErrorHandler",
                "type": "->"
            }
        ],
        "count": 1
    }
}
critical 14:05:20 Uncaught PHP Exception Twig\Error\RuntimeError: "Impossible to invoke a method ("hasRole") on a null variable." at view.html.twig line 216
{
    "exception": {}
}

Stack Trace

RuntimeError
Twig\Error\RuntimeError:
Impossible to invoke a method ("hasRole") on a null variable.

  at templates/front/user/view.html.twig:216
  at twig_get_attribute(object(Environment), object(Source), null, 'hasRole', array('ROLE_ADMIN'), 'method', false, false, false, 216)
     (var/cache/prod/twig/73/73ae13df8e25a2b7c7c1cb092b9d155a.php:562)
  at __TwigTemplate_f181f2a7f0478da80f011d431fd34c3d->block_content(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('htmlclass' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_htmlclass'), 'website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'title_suffix' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_title_suffix'), 'stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_stylesheets'), 'custom_stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_stylesheets'), 'javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_javascripts'), 'custom_javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_javascripts'), 'meta_description' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_meta_description'), 'link_canonical' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_link_canonical'), 'og_meta' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_meta'), 'og_specific' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_specific'), 'schema_org' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_schema_org'), 'body_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body_class'), 'body' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'header' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_header'), 'main_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_class'), 'main_prepend' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_prepend'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'main_title' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_title'), 'messages' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_messages'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('content', array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('htmlclass' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_htmlclass'), 'website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'title_suffix' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_title_suffix'), 'stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_stylesheets'), 'custom_stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_stylesheets'), 'javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_javascripts'), 'custom_javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_javascripts'), 'meta_description' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_meta_description'), 'link_canonical' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_link_canonical'), 'og_meta' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_meta'), 'og_specific' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_specific'), 'schema_org' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_schema_org'), 'body_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body_class'), 'body' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'header' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_header'), 'main_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_class'), 'main_prepend' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_prepend'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'main_title' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_title'), 'messages' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_messages'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (var/cache/prod/twig/73/7370185365d13365dffc869585b3e2ec.php:454)
  at __TwigTemplate_c339eece2cedafa573facb4abae40fb3->block_body(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('htmlclass' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_htmlclass'), 'website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'title_suffix' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_title_suffix'), 'stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_stylesheets'), 'custom_stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_stylesheets'), 'javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_javascripts'), 'custom_javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_javascripts'), 'meta_description' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_meta_description'), 'link_canonical' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_link_canonical'), 'og_meta' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_meta'), 'og_specific' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_specific'), 'schema_org' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_schema_org'), 'body_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body_class'), 'body' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'header' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_header'), 'main_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_class'), 'main_prepend' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_prepend'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'main_title' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_title'), 'messages' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_messages'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (vendor/twig/twig/src/Template.php:171)
  at Twig\Template->displayBlock('body', array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('htmlclass' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_htmlclass'), 'website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'title_suffix' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_title_suffix'), 'stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_stylesheets'), 'custom_stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_stylesheets'), 'javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_javascripts'), 'custom_javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_javascripts'), 'meta_description' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_meta_description'), 'link_canonical' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_link_canonical'), 'og_meta' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_meta'), 'og_specific' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_specific'), 'schema_org' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_schema_org'), 'body_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body_class'), 'body' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'header' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_header'), 'main_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_class'), 'main_prepend' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_prepend'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'main_title' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_title'), 'messages' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_messages'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (var/cache/prod/twig/73/7370185365d13365dffc869585b3e2ec.php:141)
  at __TwigTemplate_c339eece2cedafa573facb4abae40fb3->doDisplay(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('htmlclass' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_htmlclass'), 'website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'title_suffix' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_title_suffix'), 'stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_stylesheets'), 'custom_stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_stylesheets'), 'javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_javascripts'), 'custom_javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_javascripts'), 'meta_description' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_meta_description'), 'link_canonical' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_link_canonical'), 'og_meta' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_meta'), 'og_specific' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_specific'), 'schema_org' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_schema_org'), 'body_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body_class'), 'body' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'header' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_header'), 'main_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_class'), 'main_prepend' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_prepend'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'main_title' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_title'), 'messages' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_messages'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('htmlclass' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_htmlclass'), 'website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'title_suffix' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_title_suffix'), 'stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_stylesheets'), 'custom_stylesheets' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_stylesheets'), 'javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_javascripts'), 'custom_javascripts' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_custom_javascripts'), 'meta_description' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_meta_description'), 'link_canonical' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_link_canonical'), 'og_meta' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_meta'), 'og_specific' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_og_specific'), 'schema_org' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_schema_org'), 'body_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body_class'), 'body' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_body'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'header' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_header'), 'main_class' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_class'), 'main_prepend' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_prepend'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'main_title' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_main_title'), 'messages' => array(object(__TwigTemplate_c339eece2cedafa573facb4abae40fb3), 'block_messages'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('htmlclass' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_htmlclass'), 'header' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_header'), 'website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (var/cache/prod/twig/2f/2f6fbb7861de498576beb744915f4c48.php:46)
  at __TwigTemplate_08757befa15baf5734ac7652eed00d05->doDisplay(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('htmlclass' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_htmlclass'), 'header' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_header'), 'website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('htmlclass' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_htmlclass'), 'header' => array(object(__TwigTemplate_08757befa15baf5734ac7652eed00d05), 'block_header'), 'website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (var/cache/prod/twig/73/73ae13df8e25a2b7c7c1cb092b9d155a.php:48)
  at __TwigTemplate_f181f2a7f0478da80f011d431fd34c3d->doDisplay(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile')), 'app' => object(AppVariable), 'globals_gmap_key' => 'AIzaSyAcRhUvN80GoEOaM41U0UC4xWJzKTKHT7A', 'globals_uploads_users_picture_directory' => '/uploads/user/pictures/', 'globals_uploads_users_default_banners_directory' => '/uploads/user/default-banners/', 'globals_uploads_tournaments_banners_directory' => '/uploads/tournaments/banners/', 'globals_website_title_suffix' => ' | MTG @ TCG.Events', 'globals_website_url' => 'https://tcg.events', 'globals_website_name' => 'TCG Events', 'globals_website_subtitle' => 'Find TCG events around the world!', 'globals_website_description' => 'Share, publish and locate TCG tournaments around the world.', 'globals_facebook_app_id' => '160828815182734'), array('website_title' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_website_title'), 'global_limiter_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_global_limiter_class'), 'main_container_class' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_main_container_class'), 'content' => array(object(__TwigTemplate_f181f2a7f0478da80f011d431fd34c3d), 'block_content')))
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile'))))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile'))))
     (vendor/twig/twig/src/TemplateWrapper.php:38)
  at Twig\TemplateWrapper->render(array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile'))))
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('front/user/view.html.twig', array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile'))))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:448)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('front/user/view.html.twig', null, array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile'))), 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:453)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('front/user/view.html.twig', null, array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile'))), null, 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:253)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('front/user/view.html.twig', array('user' => object(User), 'breadcrumb' => array(array('link' => '/en/home', 'text' => 'Events home', 'title' => 'Find events around the world!'), array('link' => '/en/users/map', 'text' => 'TCGEvents <span class="text-theme-yellow">Users</span>', 'title' => 'View all users on a map'), array('text' => 'Les Arpenteurs de Palaiseau (ZAP)', 'title' => 'Les Arpenteurs de Palaiseau (ZAP)\'s profile'))))
     (src/Controller/Front/UserController.php:35)
  at App\Controller\Front\UserController->view('new-user-14', object(Translator), object(EntityManagerGhostD86156e))
     (vendor/symfony/http-kernel/HttpKernel.php:181)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/innerson/www/tcg.events/vendor/autoload_runtime.php')
     (public/index.php:7)