Symfony Exception

RuntimeError

HTTP 500 Internal Server Error

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

Exception

Twig\Error\ RuntimeError

  1.         <div class="mainContainer">
  2.             <div style="text-align:center;">
  3.                 <h2> UKCA Declaration of conformity</h2>
  4.                 {# <p>Declaration of conformity EU</p> #}
  5.                 <p>Nr/No. {{produkt.id}}/2022</p>
  6.             </div>
  7.             <p><strong>Manufacturer : Cora Lighting Factory Sp. z o.o. ul.Ignatza Hakuby nr 18, 41-914 Bytom</strong></p>
  8.             <p><strong>Address:</strong>ul.Hakuby 18  41-914 Bytom</p>
  1. \t\t\t<div style=\"text-align:center;\">
  2. \t\t\t\t<h2> UKCA Declaration of conformity</h2>
  3. \t\t\t\t";
  4.         // line 220
  5.         echo "\t\t\t\t<p>Nr/No. ";
  6.         echo twig_escape_filter($this->envtwig_get_attribute($this->env$this->source, (isset($context["produkt"]) || array_key_exists("produkt"$context) ? $context["produkt"] : (function () { throw new RuntimeError('Variable "produkt" does not exist.'220$this->source); })()), "id", [], "any"falsefalsefalse220), "html"nulltrue);
  7.         echo "/2022</p>
  8. \t\t\t</div>
  9. \t\t\t<p><strong>Manufacturer : Cora Lighting Factory Sp. z o.o. ul.Ignatza Hakuby nr 18, 41-914 Bytom</strong></p>
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.     public function render(array $context = []): string
  2.     {
  3.         // using func_get_args() allows to not expose the blocks argument
  4.         // as it should only be used by internal code
  5.         return $this->template->render($context\func_get_args()[1] ?? []);
  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.     {
  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.      */
AbstractController->renderView() in src/Controller/Website/KategoriesController.php (line 487)
  1.         $date = new DateTime(); 
  2.         $fdate $date->format('d.m.Y');
  3.         $html $this->renderView('kategories/product-UKCA.html.twig', array(
  4.             'produkt'  => $product,
  5.             'date' => $fdate
  6.         ));
  7.        
  8.         $result $date->format('Y-m-d H.i');
  9.         $string preg_replace('/[^A-Za-z0-9\- ]/'''$product->getNazwa());
in vendor/symfony/http-kernel/HttpKernel.php -> showUKCAdeclaration (line 152)
  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 66)
  1. // When using the HttpCache, you need to call the method in your front controller
  2. // instead of relying on the configuration parameter
  3. // https://symfony.com/doc/3.4/reference/configuration/framework.html#http-method-override
  4. Request::enableHttpMethodParameterOverride();
  5. $request Request::createFromGlobals();
  6. $response $kernel->handle($request);
  7. $response->send();
  8. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::registerBundles()" might add "iterable" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\Kernel::getContainerClass()" might add "string" as a native return type declaration in the future. Do the same in child class "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getCacheDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getLogDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\HttpKernel\Kernel::getKernelParameters()" might add "array" as a native return type declaration in the future. Do the same in child class "Sulu\Component\HttpKernel\SuluKernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "FOS\HttpCache\SymfonyCache\HttpCacheProvider::getHttpCache()" might add "?HttpKernelInterface" as a native return type declaration in the future. Do the same in implementation "App\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getSession()" might add "SessionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getLockManager()" might add "LockManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getQueryManager()" might add "QueryManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getTransactionManager()" might add "UserTransactionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getNamespaceRegistry()" might add "NamespaceRegistryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getNodeTypeManager()" might add "NodeTypeManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getObservationManager()" might add "ObservationManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getRepositoryManager()" might add "RepositoryManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getVersionManager()" might add "VersionManagerInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\WorkspaceInterface::getAccessibleWorkspaceNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\Workspace" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getPrefixes()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getURIs()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getURI()" might add "string" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getPrefix()" might add "string" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NamespaceRegistryInterface::getNamespaces()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\NamespaceRegistry" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::hasNodeType()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getAllNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getPrimaryNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::getMixinNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::createNodeTypeTemplate()" might add "NodeTypeTemplateInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::createNodeDefinitionTemplate()" might add "NodeDefinitionTemplateInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::createPropertyDefinitionTemplate()" might add "PropertyDefinitionTemplateInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::registerNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::registerNodeTypes()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeManagerInterface::registerNodeTypesCnd()" might add "Iterator" as a native return type declaration in the future. Do the same in implementation "Jackalope\NodeType\NodeTypeManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Transaction\UserTransactionInterface::inTransaction()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Jackalope\Transaction\UserTransaction" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 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 03:55:17 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\MessageDigestPasswordEncoder" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\MessageDigestPasswordHasher" instead.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\BasePasswordEncoder" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\CheckPasswordLengthTrait" instead.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface" class is deprecated, use "Symfony\Component\PasswordHasher\PasswordHasherInterface" instead.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\Security\Core\User\EquatableInterface::isEqualTo()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\SecurityBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getRoles()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\SecurityBundle\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QueryManagerInterface::createQuery()" might add "QueryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QueryManagerInterface::getQOMFactory()" might add "QueryObjectModelFactoryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QueryManagerInterface::getQuery()" might add "QueryInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QueryManagerInterface::getSupportedQueryLanguages()" might add "array" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QueryManager" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::createQuery()" might add "QueryObjectModelInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::selector()" might add "SelectorInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::join()" might add "JoinInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::equiJoinCondition()" might add "EquiJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::sameNodeJoinCondition()" might add "SameNodeJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::childNodeJoinCondition()" might add "ChildNodeJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::descendantNodeJoinCondition()" might add "DescendantNodeJoinConditionInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::andConstraint()" might add "AndInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::orConstraint()" might add "OrInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::notConstraint()" might add "NotInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::comparison()" might add "ComparisonInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::propertyExistence()" might add "PropertyExistenceInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::fullTextSearch()" might add "FullTextSearchInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::sameNode()" might add "SameNodeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::childNode()" might add "ChildNodeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::descendantNode()" might add "DescendantNodeInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::propertyValue()" might add "PropertyValueInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::length()" might add "LengthInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::nodeName()" might add "NodeNameInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::nodeLocalName()" might add "NodeLocalNameInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::fullTextSearchScore()" might add "FullTextSearchScoreInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::lowerCase()" might add "LowerCaseInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::upperCase()" might add "UpperCaseInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::bindVariable()" might add "BindVariableValueInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::literal()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::ascending()" might add "OrderingInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::descending()" might add "OrderingInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\Query\QOM\QueryObjectModelFactoryInterface::column()" might add "ColumnInterface" as a native return type declaration in the future. Do the same in implementation "Jackalope\Query\QOM\QueryObjectModelFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticleNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getDeclaringNodeType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isAutoCreated()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isMandatory()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::getOnParentVersion()" might add "int" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\ItemDefinitionInterface::isProtected()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypes()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getRequiredPrimaryTypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryType()" might add "NodeTypeInterface" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::getDefaultPrimaryTypeName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeDefinitionInterface::allowsSameNameSiblings()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeDefinition" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredSupertypeNames()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isAbstract()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isMixin()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::hasOrderableChildNodes()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::isQueryable()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getPrimaryItemName()" might add "string" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredPropertyDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "PHPCR\NodeType\NodeTypeDefinitionInterface::getDeclaredChildNodeDefinitions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Initializer\ArticlePageNodeType" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "JMS\Serializer\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Serializer\WebsiteArticleUrlsSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Structure\StructureBridge" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticlePageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\ArticleSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\DateShardingSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\PageSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sulu\Bundle\ArticleBundle\Document\Subscriber\WebspaceSubscriber" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Since symfony/event-dispatcher 5.1: Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy is deprecated, use the event dispatcher without the proxy.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Content\Compat\Property" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Since symfony/security-bundle 5.3: The "sulu_security.encoder_factory" service is deprecated, use "security.password_hasher_factory" instead.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactory" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactory" instead.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "IteratorAggregate::getIterator()" might add "\Traversable" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Webspace\Manager\WebspaceCollection" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Method "JsonSerializable::jsonSerialize()" might add "mixed" as a native return type declaration in the future. Do the same in implementation "Sulu\Component\Localization\Localization" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: The "Sulu\Component\Localization\Localization::setXDefault" method is deprecated on "Sulu\Component\Localization\Localization" use "setDefault" instead.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::getXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "getDefaultLocalization" instead.
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: The "Sulu\Component\Webspace\Portal::setXDefaultLocalization" method is deprecated on "Sulu\Component\Webspace\Portal" use "setDefaultLocalization" instead.
{
    "exception": {}
}
INFO 03:55:17 request Matched route "UKCAdeclaration".
{
    "route": "UKCAdeclaration",
    "route_parameters": {
        "_route": "UKCAdeclaration",
        "_controller": "App\\Controller\\Website\\KategoriesController::showUKCAdeclaration",
        "id": "2",
        "slug": "N208-K0001-LC935-H8-55-ZC01-350"
    },
    "request_uri": "https://cora.pl/kategories/2/produkty/N208-K0001-LC935-H8-55-ZC01-350/UKCA",
    "method": "GET"
}
INFO 03:55:17 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\ThemeBundle\EventListener\SetThemeEventListener::setActiveThemeOnRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\ThemeBundle\\EventListener\\SetThemeEventListener::setActiveThemeOnRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 03:55:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 03:55:17 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 03:55:17 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
INFO 03:55:17 doctrine Connecting with parameters {params}
{
    "params": {
        "url": "<redacted>",
        "driver": "pdo_mysql",
        "host": "localhost",
        "port": 3306,
        "user": "cra_coradev_sulu",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "cra_coradev_sulu",
        "serverVersion": "mariadb-10.5.8",
        "charset": "utf8mb4"
    }
}
DEBUG 03:55:17 doctrine Executing statement: SELECT t0.id AS id_1, t0.kod AS kod_2, t0.nazwa AS nazwa_3, t0.dodatkowa_nazwa AS dodatkowa_nazwa_4, t0.cena_katalog_netto AS cena_katalog_netto_5, t0.cena_katalog_eur AS cena_katalog_eur_6, t0.ean AS ean_7, t0.kraj_pochodzenia AS kraj_pochodzenia_8, t0.slug AS slug_9, t0.main AS main_10, t0.moc_led_chip AS moc_led_chip_11, t0.moc_oprawy AS moc_oprawy_12, t0.lumen_led_chip AS lumen_led_chip_13, t0.lmw_zoprawy AS lmw_zoprawy_14, t0.klasa_efektywnosci AS klasa_efektywnosci_15, t0.l90b10 AS l90b10_16, t0.lumen_oprawa AS lumen_oprawa_17, t0.image_url AS image_url_18, t0.description AS description_19, t0.visibility AS visibility_20, t0.led AS led_21, t0.options AS options_22, t0.cover AS cover_23, t0.mcadam AS mcadam_24, t0.operating_voltage AS operating_voltage_25, t0.plik_fotometryczny AS plik_fotometryczny_26, t0.tech_image AS tech_image_27, t0.options_en AS options_en_28, t0.opis_pl AS opis_pl_29, t0.opis_en AS opis_en_30, t0.sterowanie_id AS sterowanie_id_31, t0.model_oprawy_id AS model_oprawy_id_32, t0.destiny_id AS destiny_id_33, t0.dioda_id AS dioda_id_34, t0.kolor_id AS kolor_id_35, t0.holder_id AS holder_id_36, t0.odblysnik_id AS odblysnik_id_37, t0.led_driver_id AS led_driver_id_38, t0.przeslona_id AS przeslona_id_39, t0.image_id AS image_id_40 FROM produkt t0 WHERE t0.slug = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.kod AS kod_2, t0.nazwa AS nazwa_3, t0.dodatkowa_nazwa AS dodatkowa_nazwa_4, t0.cena_katalog_netto AS cena_katalog_netto_5, t0.cena_katalog_eur AS cena_katalog_eur_6, t0.ean AS ean_7, t0.kraj_pochodzenia AS kraj_pochodzenia_8, t0.slug AS slug_9, t0.main AS main_10, t0.moc_led_chip AS moc_led_chip_11, t0.moc_oprawy AS moc_oprawy_12, t0.lumen_led_chip AS lumen_led_chip_13, t0.lmw_zoprawy AS lmw_zoprawy_14, t0.klasa_efektywnosci AS klasa_efektywnosci_15, t0.l90b10 AS l90b10_16, t0.lumen_oprawa AS lumen_oprawa_17, t0.image_url AS image_url_18, t0.description AS description_19, t0.visibility AS visibility_20, t0.led AS led_21, t0.options AS options_22, t0.cover AS cover_23, t0.mcadam AS mcadam_24, t0.operating_voltage AS operating_voltage_25, t0.plik_fotometryczny AS plik_fotometryczny_26, t0.tech_image AS tech_image_27, t0.options_en AS options_en_28, t0.opis_pl AS opis_pl_29, t0.opis_en AS opis_en_30, t0.sterowanie_id AS sterowanie_id_31, t0.model_oprawy_id AS model_oprawy_id_32, t0.destiny_id AS destiny_id_33, t0.dioda_id AS dioda_id_34, t0.kolor_id AS kolor_id_35, t0.holder_id AS holder_id_36, t0.odblysnik_id AS odblysnik_id_37, t0.led_driver_id AS led_driver_id_38, t0.przeslona_id AS przeslona_id_39, t0.image_id AS image_id_40 FROM produkt t0 WHERE t0.slug = ? LIMIT 1",
    "params": {
        "1": "/N208-K0001-LC935-H8-55-ZC01-350"
    },
    "types": {
        "1": 2
    }
}
INFO 03:55:17 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 03:55:17 request Uncaught PHP Exception Twig\Error\RuntimeError: "Impossible to access an attribute ("id") on a null variable." at /home/cra/domains/cora.pl/public_html/templates/kategories/product-UKCA.html.twig line 220
{
    "exception": {}
}
INFO 03:55:17 deprecation User Deprecated: Since symfony/http-kernel 5.3: "Symfony\Component\HttpKernel\Event\KernelEvent::isMasterRequest()" is deprecated, use "isMainRequest()" instead.
{
    "exception": {}
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\ZoneMatcherListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\ZoneMatcherListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\Routing\RequestListener::onRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\Routing\\RequestListener::onRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\SecurityBundle\EventListener\SystemListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SystemListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\WebsiteBundle\EventListener\TranslatorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\WebsiteBundle\\EventListener\\TranslatorListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\RestBundle\\EventListener\\BodyListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\ThemeBundle\EventListener\SetThemeEventListener::setActiveThemeOnRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\ThemeBundle\\EventListener\\SetThemeEventListener::setActiveThemeOnRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "Sulu\Bundle\FormBundle\Event\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Sulu\\Bundle\\FormBundle\\Event\\RequestListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.request" to listener "FOS\HttpCacheBundle\EventListener\Php8AttributesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "FOS\\HttpCacheBundle\\EventListener\\Php8AttributesListener::onKernelRequest"
}
DEBUG 03:55:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 03:55:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 03:55:17 event Notified event "kernel.controller" to listener "Sulu\Bundle\SecurityBundle\EventListener\SuluSecurityListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sulu\\Bundle\\SecurityBundle\\EventListener\\SuluSecurityListener::onKernelController"
}
DEBUG 03:55:17 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"
}

Stack Trace

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

  at templates/kategories/product-UKCA.html.twig:220
  at twig_get_attribute()
     (var/cache/website/dev/twig/94/94fed017ca8ee4c2f4f93b5ec259fdf032746027d772978f9dabbdbc8b0d9417.php:264)
  at __TwigTemplate_853c57d9d8a5c46e04ed3d2234159d812987c6c6de7ed5c367314e633a98c1e5->doDisplay()
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling()
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display()
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render()
     (vendor/twig/twig/src/TemplateWrapper.php:40)
  at Twig\TemplateWrapper->render()
     (vendor/twig/twig/src/Environment.php:277)
  at Twig\Environment->render()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView()
     (src/Controller/Website/KategoriesController.php:487)
  at App\Controller\Website\KategoriesController->showUKCAdeclaration()
     (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:66)