Symfony Exception

RuntimeError

HTTP 500 Internal Server Error

Impossible to access an attribute ("titlero") on a null variable.

Exception

Twig\Error\ RuntimeError

  1.                 <div class="title centred">
  2.                     <h1>Autoritatea Aeronautică Civilă Romană</h1>
  3.                 </div>
  4.                 <ul class="bread-crumb clearfix">
  5.                     <li><a href="/">{{ _locale is null ? "Acasa" : _locale == 'ro' ? "Acasa" : "Home" }} </a></li>
  6.                     <li>{{ _locale is null ? news.titlero : _locale == 'ro' ? news.titlero : news.titleen }}</li>
  7.                 </ul>
  8.             </div>
  9.         </div>
  10.     </section>
in vendor/twig/twig/src/Template.php -> block_body (line 182)
  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.                 }
in vendor/twig/twig/src/Template.php -> doDisplay (line 405)
  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 378)
  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 -> doDisplay (line 405)
  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 378)
  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 390)
  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.      */
  2.     public function render(array $context = []): string
  3.     {
  4.         // using func_get_args() allows to not expose the blocks argument
  5.         // as it should only be used by internal code
  6.         return $this->template->render($context, \func_get_args()[1] ?? []);
  7.     }
  8.     /**
  9.      * Displays the template.
  10.      *
  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 = [])
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.     {
  2.         if (!$this->container->has('twig')) {
  3.             throw new \LogicException('You cannot use the "renderView" method if the Twig Bundle is not available. Try running "composer require symfony/twig-bundle".');
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      */
  1.     /**
  2.      * Renders a view.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         if (null === $response) {
  8.             $response = new Response();
  9.         }
AbstractController->render() in src/Controller/DefaultController.php (line 706)
  1.      */
  2.     public function newsAction($url) {
  3.         $em $this->getDoctrine()->getManager();
  4.         $news $em->getRepository("App:News")->findOneBy(['url' => $url]);
  5.         return $this->render('default/news/model.html.twig', [
  6.                     'news' => $news
  7.         ]);
  8.     }
  9.      
  10.         /**
  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);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  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.     }
Kernel->handle() in public/index.php (line 28)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 22:22:37 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 22:22:37 request Matched route "site_news".
{
    "route": "site_news",
    "route_parameters": {
        "_route": "site_news",
        "_controller": "App\\Controller\\DefaultController::newsAction",
        "_locale": "ro",
        "url": "planul-na%C8%9Aional-de-siguran%C8%9A%C4%82-a-avia%C8%9Aiei-2023-2025"
    },
    "request_uri": "http://www.caa.ro/ro/news/planul-na%25C8%259Aional-de-siguran%25C8%259A%25C4%2582-a-avia%25C8%259Aiei-2023-2025",
    "method": "GET"
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\EntryPoint\FormAuthenticationEntryPoint" class is deprecated, use the new security system with "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator" instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.form.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/cache 5.4: "Symfony\Component\Cache\DoctrineProvider" is deprecated, use "Doctrine\Common\Cache\Psr6\DoctrineProvider" instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/cache 5.4: "Symfony\Component\Cache\DoctrineProvider" is deprecated, use "Doctrine\Common\Cache\Psr6\DoctrineProvider" instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/cache 5.4: "Symfony\Component\Cache\DoctrineProvider" is deprecated, use "Doctrine\Common\Cache\Psr6\DoctrineProvider" instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/framework-bundle 5.3: Accessing the "session" service directly from the container is deprecated, use dependency injection instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-core 5.4: Using an object that is not an instance of "Symfony\Component\Security\Core\User\UserInterface" as $user in "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" is deprecated.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface" interface is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.main" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AnonymousAuthenticationProvider" class is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 22:22:37 security Populated the TokenStorage with an anonymous Token.
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated.
{
    "exception": {}
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:22:37 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 22:22:37 event Notified event "kernel.controller" to listener "App\EventListener\ActivityListener::onCoreController".
{
    "event": "kernel.controller",
    "listener": "App\\EventListener\\ActivityListener::onCoreController"
}
DEBUG 22:22:37 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:22:37 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:22:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 22:22:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 22:22:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 22:22:37 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 22:22:37 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 22:22:37 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 22:22:37 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
INFO 22:22:37 deprecation User Deprecated: Since symfony/framework-bundle 5.4: Method "Symfony\Bundle\FrameworkBundle\Controller\AbstractController::getDoctrine()" is deprecated, inject an instance of ManagerRegistry in your controller instead.
{
    "exception": {}
}
DEBUG 22:22:37 doctrine SELECT t0.id AS id_1, t0.image_name AS image_name_2, t0.title_ro AS title_ro_3, t0.title_en AS title_en_4, t0.description_ro AS description_ro_5, t0.description_en AS description_en_6, t0.status AS status_7, t0.sort AS sort_8, t0.url AS url_9, t0.is_a AS is_a_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12 FROM news t0 WHERE t0.url = ? LIMIT 1
[
    "planul-na%C8%9Aional-de-si [...]"
]
DEBUG 22:22:38 doctrine SELECT l0_.id AS id_0, l0_.title_ro AS title_ro_1, l0_.title_en AS title_en_2, l0_.type AS type_3, l0_.target AS target_4, l0_.dropdown AS dropdown_5, l0_.status AS status_6, l0_.url AS url_7, l0_.sort AS sort_8, l0_.image_name AS image_name_9, l0_.created_at AS created_at_10, l0_.updated_at AS updated_at_11, l0_.links_id AS links_id_12 FROM links l0_ WHERE l0_.links_id IS NULL AND l0_.type = ?
[
    "top_link"
]
DEBUG 22:22:38 doctrine SELECT l0_.id AS id_0, l0_.title_ro AS title_ro_1, l0_.title_en AS title_en_2, l0_.type AS type_3, l0_.target AS target_4, l0_.dropdown AS dropdown_5, l0_.status AS status_6, l0_.url AS url_7, l0_.sort AS sort_8, l0_.image_name AS image_name_9, l0_.created_at AS created_at_10, l0_.updated_at AS updated_at_11, l0_.links_id AS links_id_12 FROM links l0_ WHERE l0_.links_id IS NULL AND l0_.type = ?
[
    "top_link"
]
DEBUG 22:22:38 doctrine SELECT l0_.id AS id_0, l0_.title_ro AS title_ro_1, l0_.title_en AS title_en_2, l0_.type AS type_3, l0_.target AS target_4, l0_.dropdown AS dropdown_5, l0_.status AS status_6, l0_.url AS url_7, l0_.sort AS sort_8, l0_.image_name AS image_name_9, l0_.created_at AS created_at_10, l0_.updated_at AS updated_at_11, l0_.links_id AS links_id_12 FROM links l0_ WHERE l0_.links_id IS NULL AND l0_.type = ?
[
    "top_link"
]
DEBUG 22:22:38 doctrine SELECT l0_.id AS id_0, l0_.title_ro AS title_ro_1, l0_.title_en AS title_en_2, l0_.type AS type_3, l0_.target AS target_4, l0_.dropdown AS dropdown_5, l0_.status AS status_6, l0_.url AS url_7, l0_.sort AS sort_8, l0_.image_name AS image_name_9, l0_.created_at AS created_at_10, l0_.updated_at AS updated_at_11, l0_.links_id AS links_id_12 FROM links l0_ WHERE l0_.links_id IS NULL AND l0_.type = ?
[
    "top_link"
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    42
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    44
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    468
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    490
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    499
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    483
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    611
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    617
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    619
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    45
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    660
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    634
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    642
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    645
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    649
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    654
]
DEBUG 22:22:38 doctrine SELECT t0.id AS id_1, t0.title_ro AS title_ro_2, t0.title_en AS title_en_3, t0.type AS type_4, t0.target AS target_5, t0.dropdown AS dropdown_6, t0.status AS status_7, t0.url AS url_8, t0.sort AS sort_9, t0.image_name AS image_name_10, t0.created_at AS created_at_11, t0.updated_at AS updated_at_12, t0.links_id AS links_id_13 FROM links t0 WHERE t0.links_id = ? ORDER BY t0.sort DESC
[
    47
]
INFO 22:22:38 deprecation User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
CRITICAL 22:22:38 request Uncaught PHP Exception Twig\Error\RuntimeError: "Impossible to access an attribute ("titlero") on a null variable." at /home/aviator/templates/default/news/model.html.twig line 18
{
    "exception": {}
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 22:22:38 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 22:22:38 event Notified event "kernel.controller" to listener "App\EventListener\ActivityListener::onCoreController".
{
    "event": "kernel.controller",
    "listener": "App\\EventListener\\ActivityListener::onCoreController"
}
DEBUG 22:22:38 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 22:22:38 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 22:22:38 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 22:22:38 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 22:22:38 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 22:22:38 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 22:22:38 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 22:22:38 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 22:22:38 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Trace

RuntimeError
Twig\Error\RuntimeError:
Impossible to access an attribute ("titlero") on a null variable.

  at templates/default/news/model.html.twig:18
  at twig_get_attribute()
     (vendor/twig/twig/src/Environment.php(418) : eval()'d code:108)
  at __TwigTemplate_8b0d25c1eba7f4afa46647b0f2e56e02402fa311d66475a4e94f522dcb6ab9e2->block_body()
     (vendor/twig/twig/src/Template.php:182)
  at Twig\Template->displayBlock()
     (vendor/twig/twig/src/Environment.php(418) : eval()'d code:117)
  at __TwigTemplate_46c4879eb939884bd0ce6f7fb1cfbf8c8e054153aaa3e291614c3764cc459e46->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (vendor/twig/twig/src/Environment.php(418) : eval()'d code:54)
  at __TwigTemplate_8b0d25c1eba7f4afa46647b0f2e56e02402fa311d66475a4e94f522dcb6ab9e2->doDisplay()
     (vendor/twig/twig/src/Template.php:405)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:378)
  at Twig\Template->display()
     (vendor/twig/twig/src/Template.php:390)
  at Twig\Template->render()
     (vendor/twig/twig/src/TemplateWrapper.php:45)
  at Twig\TemplateWrapper->render()
     (vendor/twig/twig/src/Environment.php:318)
  at Twig\Environment->render()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render()
     (src/Controller/DefaultController.php:706)
  at App\Controller\DefaultController->newsAction()
     (vendor/symfony/http-kernel/HttpKernel.php:152)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (public/index.php:28)                
Loading…
Loading the web debug toolbar…
Attempt #