Deprecated: Constant E_STRICT is deprecated in /var/www/html/s/stablescaffolding/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /var/www/html/s/stablescaffolding/vendor/symfony/error-handler/ErrorHandler.php on line 76
syntax error, unexpected token ":" (500 Internal Server Error)

Symfony Exception

ParseError

HTTP 500 Internal Server Error

syntax error, unexpected token ":"

Exception

ParseError

  1.         $context['_parent'] = $context;
  2.         $context['_seq'] = twig_ensure_traversable(twig_get_attribute($this->env$this->source, (isset($context["slider"]) || array_key_exists("slider"$context) ? $context["slider"] : (function () { throw new RuntimeError('Variable "slider" does not exist.'4$this->source); })()), "images", [], "any"falsefalsefalse4));
  3.         foreach ($context['_seq'] as $context["_key"] => $context["slide"]) {
  4.             // line 5
  5.             echo "                <div class=\"swiper-slide lazyBackgroundImage\" data-mobile=\"";
  6.             echo twig_escape_filter($this->env$this->extensions['App\Twig\TwigExtension']->{closure:App\Twig\TwigExtension::getFunctions():44}(("/userfiles/images/sliderimages/" twig_get_attribute($this->env$this->source$context["slide"], "image", [], "any"falsefalsefalse5)), "zoomCrop"990695), "html"nulltrue);
  7.             echo "\" data-desktop=\"";
  8.             echo twig_escape_filter($this->env$this->extensions['App\Twig\TwigExtension']->{closure:App\Twig\TwigExtension::getFunctions():44}(("/userfiles/images/sliderimages/" twig_get_attribute($this->env$this->source$context["slide"], "image", [], "any"falsefalsefalse5)), "zoomCrop"25001750), "html"nulltrue);
  9.             echo "\">
  10.                     <div class=\"w-full h-full flex justify-center items-end pb-24 md:pb-0 md:items-center\">
  11.                         <div class=\"container text-center\">
  1.         if (!class_exists($clsfalse)) {
  2.             $key $this->cache->generateKey($name$mainCls);
  3.             if (!$this->isAutoReload() || $this->isTemplateFresh($name$this->cache->getTimestamp($key))) {
  4.                 $this->cache->load($key);
  5.             }
  6.             if (!class_exists($clsfalse)) {
  7.                 $source $this->getLoader()->getSourceContext($name);
  8.                 $content $this->compileSource($source);
in vendor/twig/twig/src/Environment.php -> loadTemplate (line 312)
  1.     {
  2.         if ($name instanceof TemplateWrapper) {
  3.             return $name;
  4.         }
  5.         return new TemplateWrapper($this$this->loadTemplate($this->getTemplateClass($name), $name));
  6.     }
  7.     /**
  8.      * Loads a template internal representation.
  9.      *
  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.      */
  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('@theme/slider/slider.html.twig', array('slider' => object(Slider))) in src/Controller/SliderDefaultController.php (line 26)
  1.         if (!$slider || $slider->isDeleted() || !$slider->isActive()) {
  2.             return new Response('No active Slider assigned to Page');
  3.         }
  4.         return $this->render('@theme/slider/slider.html.twig', ['slider' => $slider]);
  5.     }
  6. }
in vendor/symfony/http-kernel/HttpKernel.php -> embedSlider (line 163)
  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.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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.     {
  2.         $request $this->container->get('request_stack')->getCurrentRequest();
  3.         $path['_controller'] = $controller;
  4.         $subRequest $request->duplicate($querynull$path);
  5.         return $this->container->get('http_kernel')->handle($subRequestHttpKernelInterface::SUB_REQUEST);
  6.     }
  7.     /**
  8.      * Returns a RedirectResponse to the given URL.
  9.      */
AbstractController->forward('App\\Controller\\SliderDefaultController::embedSlider', array('request' => object(Request), 'pageId' => 1, '_controller' => 'App\\Controller\\SliderDefaultController::embedSlider')) in src/Controller/PageDefaultController.php (line 797)
  1.                     // Non-URL reliant (slugless) component
  2.                     if (null == $cmsComponentArray[$comkey]['slug']) {
  3.                         $this->debug($debug'<p>SLUGLESS:<br/>RENDERING CONTROLLER into  = <strong>'.$action['_controller'].'</strong></p>');
  4.                         // fetch component data
  5.                         $response $this->forward($action['_controller'], ['request' => $request'pageId' => $confirmedPageId]);
  6.                         $pageComponentsReturn[] = [
  7.                             'position' => $pageComponent['position'],
  8.                             'urlKey' => null,
  9.                             'urlValue' => null,
  10.                             'data' => $response->getContent(),
PageDefaultController->getComponentData(false, array(array('name' => 'Embed CaseStudies', 'slug' => null, 'route' => 'embed_casestudies', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Enquiry Form', 'slug' => null, 'route' => 'embed_enquiry', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Featured Sectors', 'slug' => null, 'route' => 'embed_featured_sectors', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Sectors', 'slug' => null, 'route' => 'embed_sectors', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Sectors (blocks)', 'slug' => null, 'route' => 'embed_sectors_blocks', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Sector', 'slug' => '{sector_slug}', 'route' => 'embed_sector', 'slugEntity' => 'Sector', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Services', 'slug' => null, 'route' => 'embed_services', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Service', 'slug' => '{service_slug}', 'route' => 'embed_service', 'slugEntity' => 'Service', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Client Slider', 'slug' => null, 'route' => 'embed_client_slider', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Featured CaseStudies', 'slug' => null, 'route' => 'embed_featured_casestudies', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Case Study', 'slug' => '{study_slug}', 'route' => 'embed_study', 'slugEntity' => 'CaseStudies', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Accreditations', 'slug' => null, 'route' => 'embed_accreditations', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Meet the Team', 'slug' => null, 'route' => 'embed_meettheteam', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Team Member', 'slug' => '{teammember_slug}', 'route' => 'embed_teammember', 'slugEntity' => 'TeamMember', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'News Overview', 'slug' => null, 'route' => 'embed_news_overview', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'News Article', 'slug' => '{news_slug}', 'route' => 'embed_news_article', 'slugEntity' => 'News', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Search Results', 'slug' => null, 'route' => 'process_search', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Slider', 'slug' => null, 'route' => 'embed_slider', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard')), array(array('position' => 'Page Top', 'route' => 'embed_slider'), array('position' => 'Before Content', 'route' => 'embed_featured_sectors'), array('position' => 'Home Services', 'route' => 'embed_services'), array('position' => 'Home Sectors', 'route' => 'embed_sectors'), array('position' => 'Client Slider', 'route' => 'embed_client_slider'), array('position' => 'Enquiry Form', 'route' => 'embed_enquiry')), object(Request), 1) in src/Controller/PageDefaultController.php (line 433)
  1.         // simple direct match
  2.         // this will match the home page in any locale and any default 'en' page
  3.         $page $this->em->getRepository(Page::class)->findOneBy(['slug' => $slug'deleted' => false'active' => true]);
  4.         if (null !== $page) {
  5.             $pageComponents $this->getComponentData($debug$cmsComponentArray$page->getComponents(), $request$page->getId());
  6.             $this->debug($debug"<br/><span style='color:green' >(STEP1) Found - ".$page->getTitle().' (ID#'.$page->getId().')<br/>Will render page out of debug mode</span>');
  7.             return [
  8.                 'page' => $page,
  9.                 'slug' => $slug,
PageDefaultController->routeMatcherV2(object(Request), 'home') in src/Controller/PageDefaultController.php (line 935)
  1.                 return $this->redirect('/'.$slug);
  2.             }
  3.         }
  4.         $pageData $this->routeMatcherV2($request$slug);
  5.         // REDIRECT CHECKER
  6.         $this->debug($debug'Checking for redirects...');
  7.         foreach ($pageData['pageComponents'] as $pageComponent) {
  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.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  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.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 35)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/html/s/stablescaffolding/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 2

Level Channel Message
INFO 18:56:28 php Deprecated: Symfony\Component\Config\Resource\DirectoryResource::__construct(): Implicitly marking parameter $pattern as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\ExpressionLanguage\ExpressionLanguage::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authorization\ExpressionLanguage::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookupCollectionInterface::getEntrypointLookup(): Implicitly marking parameter $buildName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookupCollection::__construct(): Implicitly marking parameter $defaultBuildName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookupCollection::getEntrypointLookup(): Implicitly marking parameter $buildName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Cache\Adapter\TraceableAdapter::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Cache\Adapter\TraceableAdapter::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Doctrine\ContainerAwareEventManager::dispatchEvent(): Implicitly marking parameter $eventArgs as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Monolog\Logger::addRecord(): Implicitly marking parameter $datetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Log\DebugLoggerInterface::getLogs(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Log\DebugLoggerInterface::countErrors(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Monolog\Logger::getLogs(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Monolog\Logger::countErrors(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\DoctrineParamConverter::__construct(): Implicitly marking parameter $registry as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\DoctrineParamConverter::__construct(): Implicitly marking parameter $expressionLanguage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::__construct(): Implicitly marking parameter $twig as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $language as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $trustResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $roleHierarchy as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $tokenStorage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $authChecker as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::__construct(): Implicitly marking parameter $authChecker as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::__construct(): Implicitly marking parameter $tokenStorage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::__construct(): Implicitly marking parameter $authorizationChecker as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Monolog\Handler\ConsoleHandler::__construct(): Implicitly marking parameter $output as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\LocaleListener::__construct(): Implicitly marking parameter $router as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\ErrorListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\ErrorListener::logException(): Implicitly marking parameter $logLevel as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\HttpKernel::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\HttpKernel::__construct(): Implicitly marking parameter $argumentResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\HttpKernel::terminateWithException(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Controller\ControllerResolver::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Controller\ContainerControllerResolver::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Controller\ArgumentResolver::__construct(): Implicitly marking parameter $argumentMetadataFactory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Cache\Adapter\FilesystemAdapter::__construct(): Implicitly marking parameter $directory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Cache\Adapter\FilesystemAdapter::__construct(): Implicitly marking parameter $marshaller as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Cache\Marshaller\DefaultMarshaller::__construct(): Implicitly marking parameter $useIgbinarySerialize as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Asset\Packages::__construct(): Implicitly marking parameter $defaultPackage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Asset\Packages::getPackage(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Asset\Packages::getVersion(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Asset\Packages::getUrl(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Asset\Package::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Asset\PathPackage::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Asset\VersionStrategy\JsonManifestVersionStrategy::__construct(): Implicitly marking parameter $httpClient as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Contracts\Translation\TranslatorInterface::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Contracts\Translation\TranslatorInterface::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\TranslatorBagInterface::getCatalogue(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\Translator::__construct(): Implicitly marking parameter $formatter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\Translator::__construct(): Implicitly marking parameter $cacheDir as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\Translator::addResource(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\Translator::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\Translator::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\Translator::getCatalogue(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\MessageCatalogue::all(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\MessageCatalogueInterface::all(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\FrameworkBundle\Translation\Translator::addResource(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\Formatter\MessageFormatter::__construct(): Implicitly marking parameter $translator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\Formatter\MessageFormatter::__construct(): Implicitly marking parameter $intlFormatter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Contracts\Translation\TranslatorTrait::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Contracts\Translation\TranslatorTrait::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::__construct(): Implicitly marking parameter $exceptionHandler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure(): Implicitly marking parameter $event as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Debug\FileLinkFormatter::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Debug\FileLinkFormatter::__construct(): Implicitly marking parameter $baseDir as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Stopwatch\Stopwatch::openSection(): Implicitly marking parameter $id as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Stopwatch\Stopwatch::start(): Implicitly marking parameter $category as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Stopwatch\Section::__construct(): Implicitly marking parameter $origin as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Monolog\Processor\DebugProcessor::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Monolog\Processor\DebugProcessor::getLogs(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Monolog\Processor\DebugProcessor::countErrors(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\RouterListener::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\RouterListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\RouterListener::__construct(): Implicitly marking parameter $projectDir as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\RouterListener::setCurrentRequest(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\AbstractSessionListener::__construct(): Implicitly marking parameter $container as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Validator\Mapping\Loader\AutoMappingTrait::isAutoMappingEnabledForClass(): Implicitly marking parameter $classValidatorRegexp as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Doctrine\Validator\DoctrineLoader::__construct(): Implicitly marking parameter $classValidatorRegexp as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Validator\Mapping\Loader\PropertyInfoLoader::__construct(): Implicitly marking parameter $classValidatorRegexp as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\ProfilerListener::__construct(): Implicitly marking parameter $matcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\EventListener\ProfilerListener::__construct(): Implicitly marking parameter $collectParameter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\RouterDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Form\Extension\DataCollector\FormDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Form\Extension\DataCollector\FormDataCollector::recursiveBuildFinalFormTree(): Implicitly marking parameter $form as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface::setToken(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage::setToken(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface::isAnonymous(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface::isRememberMe(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface::isFullFledged(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver::isAuthenticated(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver::isAnonymous(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver::isRememberMe(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver::isFullFledged(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::__construct(): Implicitly marking parameter $router as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::__construct(): Implicitly marking parameter $tokenStorage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::registerListener(): Implicitly marking parameter $csrfTokenManager as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::registerListener(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::getLogoutPath(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::getLogoutUrl(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Logout\LogoutUrlGenerator::setCurrentFirewall(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\DumpDataCollector::__construct(): Implicitly marking parameter $stopwatch as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\DumpDataCollector::__construct(): Implicitly marking parameter $charset as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\DumpDataCollector::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\DumpDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarDumper\Cloner\AbstractCloner::__construct(): Implicitly marking parameter $casters as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarDumper\Dumper\AbstractDumper::__construct(): Implicitly marking parameter $charset as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarDumper\Dumper\CliDumper::__construct(): Implicitly marking parameter $charset as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarDumper\Dumper\HtmlDumper::__construct(): Implicitly marking parameter $charset as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarDumper\Dumper\ContextProvider\SourceContextProvider::__construct(): Implicitly marking parameter $charset as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarDumper\Dumper\ContextProvider\SourceContextProvider::__construct(): Implicitly marking parameter $projectDir as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarDumper\Dumper\ContextProvider\SourceContextProvider::__construct(): Implicitly marking parameter $fileLinkFormatter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::__construct(): Implicitly marking parameter $urlGenerator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::__construct(): Implicitly marking parameter $cspHandler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::__construct(): Implicitly marking parameter $dumpDataCollector as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Contracts\HttpClient\HttpClientInterface::stream(): Implicitly marking parameter $timeout as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\DataCollectorTranslator::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\DataCollectorTranslator::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\DataCollectorTranslator::getCatalogue(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Routing\Router::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Routing\Router::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Routing\Router::__construct(): Implicitly marking parameter $defaultLocale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\FrameworkBundle\Routing\Router::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\FrameworkBundle\Routing\Router::__construct(): Implicitly marking parameter $parameters as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\FrameworkBundle\Routing\Router::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\FrameworkBundle\Routing\Router::__construct(): Implicitly marking parameter $defaultLocale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher::getListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher::hasListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher::dispatch(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher::getCalledListeners(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher::getNotCalledListeners(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher::getOrphanedEvents(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\Profiler::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\Profiler::find(): Implicitly marking parameter $statusCode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\Profiler::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\ProfilerStorageInterface::find(): Implicitly marking parameter $start as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\ProfilerStorageInterface::find(): Implicitly marking parameter $end as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\FileProfilerStorage::find(): Implicitly marking parameter $start as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\FileProfilerStorage::find(): Implicitly marking parameter $end as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\FileProfilerStorage::find(): Implicitly marking parameter $statusCode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\FileProfilerStorage::createProfileFromData(): Implicitly marking parameter $parent as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\Profiler\FileProfilerStorage::doRead(): Implicitly marking parameter $profile as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\TimeDataCollector::__construct(): Implicitly marking parameter $kernel as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\TimeDataCollector::__construct(): Implicitly marking parameter $stopwatch as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\TimeDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\MemoryDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Validator\DataCollector\ValidatorDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\AjaxDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\ExceptionDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\LoggerDataCollector::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\LoggerDataCollector::__construct(): Implicitly marking parameter $containerPathPrefix as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\LoggerDataCollector::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\LoggerDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\LoggerDataCollector::getContainerCompilerLogs(): Implicitly marking parameter $compilerLogsFilepath as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Cache\DataCollector\CacheDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Translation\DataCollector\TranslationDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct(): Implicitly marking parameter $tokenStorage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct(): Implicitly marking parameter $roleHierarchy as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct(): Implicitly marking parameter $logoutUrlGenerator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct(): Implicitly marking parameter $accessDecisionManager as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct(): Implicitly marking parameter $firewallMap as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct(): Implicitly marking parameter $firewall as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\DataCollector\TwigDataCollector::__construct(): Implicitly marking parameter $twig as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\DataCollector\TwigDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Doctrine\DataCollector\DoctrineDataCollector::__construct(): Implicitly marking parameter $debugDataHolder as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Doctrine\DataCollector\DoctrineDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SwiftmailerBundle\DataCollector\MessageDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\ConfigDataCollector::setKernel(): Implicitly marking parameter $kernel as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\DataCollector\ConfigDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage::setToken(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Twig\Template::displayBlock(): Implicitly marking parameter $templateContext as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Twig\Environment::getTemplateClass(): Implicitly marking parameter $index as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Twig\Environment::loadTemplate(): Implicitly marking parameter $index as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Twig\Environment::createTemplate(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Twig\Loader\FilesystemLoader::__construct(): Implicitly marking parameter $rootPath as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\LogoutUrlExtension::getLogoutPath(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\LogoutUrlExtension::getLogoutUrl(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\SecurityExtension::__construct(): Implicitly marking parameter $securityChecker as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\SecurityExtension::__construct(): Implicitly marking parameter $impersonateUrlGenerator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\SecurityExtension::isGranted(): Implicitly marking parameter $field as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\SecurityExtension::getImpersonateExitUrl(): Implicitly marking parameter $exitTo as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\SecurityExtension::getImpersonateExitPath(): Implicitly marking parameter $exitTo as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Impersonate\ImpersonateUrlGenerator::generateExitPath(): Implicitly marking parameter $targetUri as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Impersonate\ImpersonateUrlGenerator::generateExitUrl(): Implicitly marking parameter $targetUri as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Impersonate\ImpersonateUrlGenerator::buildExitPath(): Implicitly marking parameter $targetUri as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\DumpExtension::__construct(): Implicitly marking parameter $dumper as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\ProfilerExtension::__construct(): Implicitly marking parameter $stopwatch as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\TranslationExtension::__construct(): Implicitly marking parameter $translator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\TranslationExtension::__construct(): Implicitly marking parameter $translationNodeVisitor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\TranslationExtension::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\TranslationExtension::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\TranslationExtension::trans(): Implicitly marking parameter $count as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\TranslationExtension::createTranslatable(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\AssetExtension::getAssetUrl(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\AssetExtension::getAssetVersion(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\CodeExtension::formatFile(): Implicitly marking parameter $text as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\StopwatchExtension::__construct(): Implicitly marking parameter $stopwatch as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Twig\Extension\FormExtension::__construct(): Implicitly marking parameter $translator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension::renderWebpackScriptTags(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension::renderWebpackLinkTags(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::renderStimulusAction(): Implicitly marking parameter $actionName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::renderStimulusAction(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::appendStimulusAction(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::renderStimulusTarget(): Implicitly marking parameter $targetNames as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\WebpackEncoreBundle\Twig\StimulusTwigExtension::appendStimulusTarget(): Implicitly marking parameter $targetNames as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\WebProfilerBundle\Twig\WebProfilerExtension::__construct(): Implicitly marking parameter $dumper as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\WebProfilerBundle\Twig\WebProfilerExtension::dumpLog(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\DependencyInjection\EnvVarProcessor::__construct(): Implicitly marking parameter $loaders as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarDumper\VarDumper::setHandler(): Implicitly marking parameter $callable as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Faker\Generator::__construct(): Implicitly marking parameter $container as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Faker\Container\ContainerBuilder::add(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Faker\Provider\DateTime::timezone(): Implicitly marking parameter $countryCode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php Deprecated: Symfony\Component\EventDispatcher\Debug\WrappedListener::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Stopwatch\StopwatchEvent::__construct(): Implicitly marking parameter $category as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Stopwatch\StopwatchEvent::__construct(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\FrameworkBundle\Routing\RedirectableCompiledUrlMatcher::redirect(): Implicitly marking parameter $scheme as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Routing\Matcher\RedirectableUrlMatcherInterface::redirect(): Implicitly marking parameter $scheme as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 request Matched route "home".
{
    "route": "home",
    "route_parameters": {
        "_route": "home",
        "slug": "home",
        "_controller": "App\\Controller\\PageDefaultController::router"
    },
    "request_uri": "https://stablescaffolding.dev123.site/",
    "method": "GET"
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\SessionInterface::invalidate(): Implicitly marking parameter $lifetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\SessionInterface::migrate(): Implicitly marking parameter $lifetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Session::__construct(): Implicitly marking parameter $storage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Session::__construct(): Implicitly marking parameter $attributes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Session::__construct(): Implicitly marking parameter $flashes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Session::__construct(): Implicitly marking parameter $usageReporter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Session::invalidate(): Implicitly marking parameter $lifetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Session::migrate(): Implicitly marking parameter $lifetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\SessionFactory::__construct(): Implicitly marking parameter $usageReporter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorageFactory::__construct(): Implicitly marking parameter $metaBag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage::__construct(): Implicitly marking parameter $metaBag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage::regenerate(): Implicitly marking parameter $lifetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage::setMetadataBag(): Implicitly marking parameter $metaBag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage::loadSession(): Implicitly marking parameter $session as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Storage\MetadataBag::stampNew(): Implicitly marking parameter $lifetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Storage\MetadataBag::stampCreated(): Implicitly marking parameter $lifetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\Session\Storage\SessionStorageInterface::regenerate(): Implicitly marking parameter $lifetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\String\Slugger\AsciiSlugger::__construct(): Implicitly marking parameter $defaultLocale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\String\Slugger\AsciiSlugger::slug(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\String\Slugger\SluggerInterface::slug(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\RequestMatcher::__construct(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\RequestMatcher::__construct(): Implicitly marking parameter $host as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpFoundation\RequestMatcher::__construct(): Implicitly marking parameter $port as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallContext::__construct(): Implicitly marking parameter $exceptionListener as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallContext::__construct(): Implicitly marking parameter $logoutListener as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallContext::__construct(): Implicitly marking parameter $config as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ExceptionListener::__construct(): Implicitly marking parameter $authenticationEntryPoint as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ExceptionListener::__construct(): Implicitly marking parameter $errorPage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ExceptionListener::__construct(): Implicitly marking parameter $accessDeniedHandler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ExceptionListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\EntryPoint\AuthenticationEntryPointInterface::start(): Implicitly marking parameter $authException as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\EntryPoint\FormAuthenticationEntryPoint::start(): Implicitly marking parameter $authException as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\LogoutListener::__construct(): Implicitly marking parameter $csrfTokenManager as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallConfig::__construct(): Implicitly marking parameter $requestMatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallConfig::__construct(): Implicitly marking parameter $provider as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallConfig::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallConfig::__construct(): Implicitly marking parameter $entryPoint as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallConfig::__construct(): Implicitly marking parameter $accessDeniedHandler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallConfig::__construct(): Implicitly marking parameter $accessDeniedUrl as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bundle\SecurityBundle\Security\FirewallConfig::__construct(): Implicitly marking parameter $switchUser as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\HttpUtils::__construct(): Implicitly marking parameter $urlGenerator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\HttpUtils::__construct(): Implicitly marking parameter $domainRegexp as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\HttpUtils::__construct(): Implicitly marking parameter $secureDomainRegexp as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\AccessMap::add(): Implicitly marking parameter $channel as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ContextListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ContextListener::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ContextListener::__construct(): Implicitly marking parameter $trustResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\ContextListener::__construct(): Implicitly marking parameter $sessionTrackerEnabler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php Deprecated: Symfony\Component\Security\Http\Authentication\DefaultAuthenticationSuccessHandler::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Authentication\DefaultAuthenticationFailureHandler::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php 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 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener::__construct(): Implicitly marking parameter $csrfTokenManager as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php Deprecated: Symfony\Component\Security\Http\Session\SessionAuthenticationStrategy::__construct(): Implicitly marking parameter $csrfTokenStorage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener::__construct(): Implicitly marking parameter $authenticationManager as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.control" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 php 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 18:56:28 php 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 18:56:28 php Deprecated: Symfony\Bridge\Doctrine\Security\User\EntityUserProvider::__construct(): Implicitly marking parameter $property as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Bridge\Doctrine\Security\User\EntityUserProvider::__construct(): Implicitly marking parameter $managerName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.control" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 security Populated the TokenStorage with an anonymous Token.
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\SwitchUserListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Http\Firewall\SwitchUserListener::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 18:56:28 php 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 18:56:28 event Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote".
{
    "event": "debug.security.authorization.vote",
    "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote"
}
INFO 18:56:28 php Deprecated: Symfony\Component\Security\Core\Authorization\Voter\ExpressionVoter::__construct(): Implicitly marking parameter $roleHierarchy as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\ExpressionLanguage\ExpressionFunction::fromPhp(): Implicitly marking parameter $expressionFunctionName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:56:28 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarExporter\LazyGhostTrait::createLazyGhost(): Implicitly marking parameter $skippedProperties as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:28 php Deprecated: Symfony\Component\VarExporter\LazyGhostTrait::createLazyGhost(): Implicitly marking parameter $instance as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 18:56:28 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:56:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 18:56:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 18:56:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 18:56:28 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:56:28 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
INFO 18:56:28 php Deprecated: Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata::getAttributes(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 18:56:29 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 18:56:29 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"
}
DEBUG 18:56:29 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 18:56:29 php Deprecated: App\Entity\Page::setParent(): Implicitly marking parameter $parent as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: App\Entity\Page::setTemplate(): Implicitly marking parameter $template as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $service as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $em as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $entityClass as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $repositoryMethod as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $errorPath as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $ignoreNull as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraint::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $options as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $allowNull as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $normalizer as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\NotBlank::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getUserIdentifier()" might add "string" as a native return type declaration in the future. Do the same in implementation "App\Entity\User" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: App\Entity\MenuItems::setMenuId(): Implicitly marking parameter $menuId as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: App\Entity\MenuItems::setPageId(): Implicitly marking parameter $pageId as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: App\Entity\PagePreview::setPage(): Implicitly marking parameter $page as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "host": "138.68.186.27",
        "port": 3306,
        "user": "stable",
        "password": "<redacted>",
        "driverOptions": [],
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "stable",
        "serverVersion": "8.0",
        "charset": "utf8mb4"
    }
}
DEBUG 18:56:29 doctrine Executing query: SELECT p0_.id AS id_0, p0_.slug AS slug_1 FROM page p0_
{
    "sql": "SELECT p0_.id AS id_0, p0_.slug AS slug_1 FROM page p0_"
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $host as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $condition as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $priority as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $utf8 as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $stateless as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $env as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $min as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $max as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $charset as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $normalizer as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $exactMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $minMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $maxMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $charsetMessage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Length::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $options as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $mode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $normalizer as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Validator\Constraints\Email::__construct(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: App\Entity\Menu::setUpdatedBy(): Implicitly marking parameter $updatedBy as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3\Statement::__construct(): Implicitly marking parameter $stopwatch as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 18:56:29 doctrine Executing statement: SELECT t0.components AS components_1, t0.extraUrlsegments AS extraUrlsegments_2, t0.htmlblocks AS htmlblocks_3, t0.slug AS slug_4, t0.id AS id_5, t0.navtitle AS navtitle_6, t0.url AS url_7, t0.viewable_from AS viewable_from_8, t0.content2 AS content2_9, t0.title AS title_10, t0.content AS content_11, t0.subtitle AS subtitle_12, t0.meta_title AS meta_title_13, t0.meta_description AS meta_description_14, t0.ogImageAlt AS ogImageAlt_15, t0.ogImage AS ogImage_16, t0.active AS active_17, t0.deleted AS deleted_18, t0.image AS image_19, t0.image2 AS image2_20, t0.image3 AS image3_21, t0.created_at AS created_at_22, t0.updated_at AS updated_at_23, t0.update_by AS update_by_24, t0.parent AS parent_25, t0.template_id AS template_id_26 FROM page t0 WHERE t0.slug = ? AND t0.deleted = ? AND t0.active = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.components AS components_1, t0.extraUrlsegments AS extraUrlsegments_2, t0.htmlblocks AS htmlblocks_3, t0.slug AS slug_4, t0.id AS id_5, t0.navtitle AS navtitle_6, t0.url AS url_7, t0.viewable_from AS viewable_from_8, t0.content2 AS content2_9, t0.title AS title_10, t0.content AS content_11, t0.subtitle AS subtitle_12, t0.meta_title AS meta_title_13, t0.meta_description AS meta_description_14, t0.ogImageAlt AS ogImageAlt_15, t0.ogImage AS ogImage_16, t0.active AS active_17, t0.deleted AS deleted_18, t0.image AS image_19, t0.image2 AS image2_20, t0.image3 AS image3_21, t0.created_at AS created_at_22, t0.updated_at AS updated_at_23, t0.update_by AS update_by_24, t0.parent AS parent_25, t0.template_id AS template_id_26 FROM page t0 WHERE t0.slug = ? AND t0.deleted = ? AND t0.active = ? LIMIT 1",
    "params": {
        "1": "home",
        "2": 0,
        "3": 1
    },
    "types": {
        "1": 2,
        "2": 5,
        "3": 5
    }
}
INFO 18:56:29 php Deprecated: Symfony\Component\VarExporter\ProxyHelper::exportSignature(): Implicitly marking parameter $args as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\VarExporter\ProxyHelper::exportType(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\VarExporter\VarExporter::export(): Implicitly marking parameter $isStaticValue as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: App\Entity\SliderImages::setImages(): Implicitly marking parameter $images as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: App\Entity\SliderImages::setSlider(): Implicitly marking parameter $slider as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\Configurator\Traits\LocalizedRouteTrait::createLocalizedRoute(): Implicitly marking parameter $prefixes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\XmlFileLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\XmlFileLoader::supports(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\YamlFileLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\YamlFileLoader::supports(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\PhpFileLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\PhpFileLoader::supports(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\GlobFileLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\GlobFileLoader::supports(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\DirectoryLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\DirectoryLoader::supports(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\ObjectLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\ContainerLoader::__construct(): Implicitly marking parameter $env as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\ContainerLoader::supports(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\AnnotationClassLoader::__construct(): Implicitly marking parameter $reader as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\AnnotationClassLoader::__construct(): Implicitly marking parameter $env as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\AnnotationClassLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\AnnotationClassLoader::supports(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\AnnotationFileLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\AnnotationFileLoader::supports(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\AnnotationDirectoryLoader::load(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\AnnotationDirectoryLoader::supports(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator::__construct(): Implicitly marking parameter $env as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:29 php Deprecated: Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator::import(): Implicitly marking parameter $type as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Bundle\SwiftmailerBundle\EventListener\EmailSenderListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Validator\Mapping\Loader\AnnotationLoader::__construct(): Implicitly marking parameter $reader as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Validator\Mapping\Factory\LazyLoadingMetadataFactory::__construct(): Implicitly marking parameter $loader as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Validator\Mapping\Factory\LazyLoadingMetadataFactory::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Validator\Context\ExecutionContextFactory::__construct(): Implicitly marking parameter $translationDomain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php 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": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Routing\Generator\CompiledUrlGenerator::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Routing\Generator\CompiledUrlGenerator::__construct(): Implicitly marking parameter $defaultLocale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Routing\Generator\UrlGenerator::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Routing\Generator\UrlGenerator::__construct(): Implicitly marking parameter $defaultLocale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookup::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookup::__construct(): Implicitly marking parameter $cacheKey as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\ErrorHandler\Exception\FlattenException::create(): Implicitly marking parameter $statusCode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\ErrorHandler\Exception\FlattenException::createFromThrowable(): Implicitly marking parameter $statusCode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\HttpFoundation\Response::setStatusCode(): Implicitly marking parameter $text as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\HttpFoundation\Response::setExpires(): Implicitly marking parameter $date as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\HttpFoundation\Response::setLastModified(): Implicitly marking parameter $date as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\HttpFoundation\Response::setEtag(): Implicitly marking parameter $etag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\HttpFoundation\Response::isRedirect(): Implicitly marking parameter $location as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::all(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::removeCookie(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::clearCookie(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::clearCookie(): Implicitly marking parameter $sameSite as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
CRITICAL 18:56:30 request Uncaught PHP Exception ParseError: "syntax error, unexpected token ":"" at /var/www/html/s/stablescaffolding/var/cache/dev/twig/a2/a29fd7b6aaa4d43565b87dda466ed735.php line 56
{
    "exception": {}
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 18:56:30 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 18:56:30 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"
}
DEBUG 18:56:30 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 18:56:30 doctrine Executing query: SELECT s0_.id AS id_0, s0_.identifier AS identifier_1, s0_.title AS title_2, s0_.content AS content_3, s0_.slug AS slug_4, s0_.meta_title AS meta_title_5, s0_.meta_description AS meta_description_6, s0_.ogImageAlt AS ogImageAlt_7, s0_.ogImage AS ogImage_8, s0_.active AS active_9, s0_.deleted AS deleted_10, s0_.created_at AS created_at_11, s0_.updated_at AS updated_at_12, s1_.id AS id_13, s1_.html AS html_14, s1_.position AS position_15, s1_.link AS link_16, s1_.buttontext AS buttontext_17, s1_.title AS title_18, s1_.content AS content_19, s1_.slug AS slug_20, s1_.meta_title AS meta_title_21, s1_.meta_description AS meta_description_22, s1_.ogImageAlt AS ogImageAlt_23, s1_.ogImage AS ogImage_24, s1_.active AS active_25, s1_.deleted AS deleted_26, s1_.image AS image_27, s1_.created_at AS created_at_28, s1_.updated_at AS updated_at_29, s1_.slider_id AS slider_id_30 FROM slider s0_ INNER JOIN slider_page s3_ ON s0_.id = s3_.slider_id INNER JOIN page p2_ ON p2_.id = s3_.page_id AND (p2_.id IN (1)) LEFT JOIN slider_images s1_ ON s0_.id = s1_.slider_id WHERE s1_.deleted = 0 AND s1_.active = 1 ORDER BY s1_.position ASC
{
    "sql": "SELECT s0_.id AS id_0, s0_.identifier AS identifier_1, s0_.title AS title_2, s0_.content AS content_3, s0_.slug AS slug_4, s0_.meta_title AS meta_title_5, s0_.meta_description AS meta_description_6, s0_.ogImageAlt AS ogImageAlt_7, s0_.ogImage AS ogImage_8, s0_.active AS active_9, s0_.deleted AS deleted_10, s0_.created_at AS created_at_11, s0_.updated_at AS updated_at_12, s1_.id AS id_13, s1_.html AS html_14, s1_.position AS position_15, s1_.link AS link_16, s1_.buttontext AS buttontext_17, s1_.title AS title_18, s1_.content AS content_19, s1_.slug AS slug_20, s1_.meta_title AS meta_title_21, s1_.meta_description AS meta_description_22, s1_.ogImageAlt AS ogImageAlt_23, s1_.ogImage AS ogImage_24, s1_.active AS active_25, s1_.deleted AS deleted_26, s1_.image AS image_27, s1_.created_at AS created_at_28, s1_.updated_at AS updated_at_29, s1_.slider_id AS slider_id_30 FROM slider s0_ INNER JOIN slider_page s3_ ON s0_.id = s3_.slider_id INNER JOIN page p2_ ON p2_.id = s3_.page_id AND (p2_.id IN (1)) LEFT JOIN slider_images s1_ ON s0_.id = s1_.slider_id WHERE s1_.deleted = 0 AND s1_.active = 1 ORDER BY s1_.position ASC"
}
INFO 18:56:30 php Deprecated: Creation of dynamic property Gregwar\ImageBundle\Services\ImageHandling::$fallbackImage is deprecated
{
    "exception": {}
}
CRITICAL 18:56:30 php Uncaught Error: syntax error, unexpected token ":"
{
    "exception": {}
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 18:56:30 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
INFO 18:56:30 php Deprecated: Symfony\Component\ErrorHandler\ErrorRenderer\SerializerErrorRenderer::__construct(): Implicitly marking parameter $fallbackErrorRenderer as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Bridge\Twig\ErrorRenderer\TwigErrorRenderer::__construct(): Implicitly marking parameter $fallbackErrorRenderer as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\ErrorHandler\ErrorRenderer\HtmlErrorRenderer::__construct(): Implicitly marking parameter $charset as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\ErrorHandler\ErrorRenderer\HtmlErrorRenderer::__construct(): Implicitly marking parameter $projectDir as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\ErrorHandler\ErrorRenderer\HtmlErrorRenderer::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\ErrorHandler\ErrorRenderer\HtmlErrorRenderer::formatFile(): Implicitly marking parameter $text as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\NormalizerInterface::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\NormalizerInterface::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ContextAwareNormalizerInterface::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DenormalizerInterface::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ContextAwareDenormalizerInterface::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Serializer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Serializer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Serializer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Serializer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\UnwrappingDenormalizer::__construct(): Implicitly marking parameter $propertyAccessor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\UnwrappingDenormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\UnwrappingDenormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ProblemNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ProblemNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\UidNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\UidNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\UidNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\UidNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateTimeNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateTimeNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateTimeNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateTimeNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ConstraintViolationListNormalizer::__construct(): Implicitly marking parameter $nameConverter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ConstraintViolationListNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ConstraintViolationListNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\AdvancedNameConverterInterface::normalize(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\AdvancedNameConverterInterface::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\AdvancedNameConverterInterface::denormalize(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\AdvancedNameConverterInterface::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\MetadataAwareNameConverter::__construct(): Implicitly marking parameter $fallbackNameConverter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\MetadataAwareNameConverter::normalize(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\MetadataAwareNameConverter::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\MetadataAwareNameConverter::denormalize(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\MetadataAwareNameConverter::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\MetadataAwareNameConverter::normalizeFallback(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\MetadataAwareNameConverter::normalizeFallback(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\MetadataAwareNameConverter::denormalizeFallback(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\NameConverter\MetadataAwareNameConverter::denormalizeFallback(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\MimeMessageNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\MimeMessageNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\MimeMessageNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\MimeMessageNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectToPopulateTrait::extractObjectToPopulate(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractNormalizer::__construct(): Implicitly marking parameter $classMetadataFactory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractNormalizer::__construct(): Implicitly marking parameter $nameConverter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractNormalizer::handleCircularReference(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractNormalizer::isAllowedAttribute(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractNormalizer::instantiateObject(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractNormalizer::denormalizeParameter(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::__construct(): Implicitly marking parameter $classMetadataFactory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::__construct(): Implicitly marking parameter $nameConverter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::__construct(): Implicitly marking parameter $propertyTypeExtractor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::__construct(): Implicitly marking parameter $classDiscriminatorResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::__construct(): Implicitly marking parameter $objectClassResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::instantiateObject(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::extractAttributes(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::getAttributeValue(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::setAttributeValue(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer::denormalizeParameter(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::isAllowedAttribute(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::extractAttributes(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::getAttributeValue(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::setAttributeValue(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateTimeZoneNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateTimeZoneNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateTimeZoneNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateTimeZoneNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateIntervalNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateIntervalNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateIntervalNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DateIntervalNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\FormErrorNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\FormErrorNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\BackedEnumNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\BackedEnumNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\BackedEnumNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\BackedEnumNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DataUriNormalizer::__construct(): Implicitly marking parameter $mimeTypeGuesser as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DataUriNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DataUriNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DataUriNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\DataUriNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\JsonSerializableNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\JsonSerializableNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\JsonSerializableNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\JsonSerializableNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ArrayDenormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ArrayDenormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectNormalizer::__construct(): Implicitly marking parameter $classMetadataFactory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectNormalizer::__construct(): Implicitly marking parameter $nameConverter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectNormalizer::__construct(): Implicitly marking parameter $propertyAccessor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectNormalizer::__construct(): Implicitly marking parameter $propertyTypeExtractor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectNormalizer::__construct(): Implicitly marking parameter $classDiscriminatorResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectNormalizer::__construct(): Implicitly marking parameter $objectClassResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectNormalizer::extractAttributes(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectNormalizer::getAttributeValue(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Normalizer\ObjectNormalizer::setAttributeValue(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Encoder\XmlEncoder::buildXml(): Implicitly marking parameter $xmlRootNodeName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Encoder\XmlEncoder::appendNode(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Encoder\JsonEncoder::__construct(): Implicitly marking parameter $encodingImpl as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Encoder\JsonEncoder::__construct(): Implicitly marking parameter $decodingImpl as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Encoder\YamlEncoder::__construct(): Implicitly marking parameter $dumper as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Encoder\YamlEncoder::__construct(): Implicitly marking parameter $parser as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::__construct(): Implicitly marking parameter $cacheItemPool as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::throwInvalidArgumentException(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::createCache(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\PropertyInfo\Extractor\ReflectionExtractor::__construct(): Implicitly marking parameter $mutatorPrefixes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\PropertyInfo\Extractor\ReflectionExtractor::__construct(): Implicitly marking parameter $accessorPrefixes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\PropertyInfo\Extractor\ReflectionExtractor::__construct(): Implicitly marking parameter $arrayMutatorPrefixes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\PropertyInfo\Extractor\ReflectionExtractor::__construct(): Implicitly marking parameter $inflector as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\PropertyInfo\Type::__construct(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Serializer\Mapping\Loader\AnnotationLoader::__construct(): Implicitly marking parameter $reader as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Mime\Header\Headers::all(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 18:56:30 php Deprecated: Symfony\Component\Mime\FileinfoMimeTypeGuesser::__construct(): Implicitly marking parameter $magicFile as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 18:56:30 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 18:56:30 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 18:56:30 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"
}
DEBUG 18:56:30 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

ParseError
ParseError:
syntax error, unexpected token ":"

  at var/cache/dev/twig/a2/a29fd7b6aaa4d43565b87dda466ed735.php:56
  at Twig\Cache\FilesystemCache->load('/var/www/html/s/stablescaffolding/var/cache/dev/twig/a2/a29fd7b6aaa4d43565b87dda466ed735.php')
     (vendor/twig/twig/src/Environment.php:345)
  at Twig\Environment->loadTemplate('__TwigTemplate_03cc90bf8344953f2baddb4565a182d0', '@theme/slider/slider.html.twig')
     (vendor/twig/twig/src/Environment.php:312)
  at Twig\Environment->load('@theme/slider/slider.html.twig')
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('@theme/slider/slider.html.twig', array('slider' => object(Slider)))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:258)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView('@theme/slider/slider.html.twig', array('slider' => object(Slider)))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:266)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@theme/slider/slider.html.twig', array('slider' => object(Slider)))
     (src/Controller/SliderDefaultController.php:26)
  at App\Controller\SliderDefaultController->embedSlider(object(EntityManager), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 2)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 2)
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:156)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->forward('App\\Controller\\SliderDefaultController::embedSlider', array('request' => object(Request), 'pageId' => 1, '_controller' => 'App\\Controller\\SliderDefaultController::embedSlider'))
     (src/Controller/PageDefaultController.php:797)
  at App\Controller\PageDefaultController->getComponentData(false, array(array('name' => 'Embed CaseStudies', 'slug' => null, 'route' => 'embed_casestudies', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Enquiry Form', 'slug' => null, 'route' => 'embed_enquiry', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Featured Sectors', 'slug' => null, 'route' => 'embed_featured_sectors', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Sectors', 'slug' => null, 'route' => 'embed_sectors', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Sectors (blocks)', 'slug' => null, 'route' => 'embed_sectors_blocks', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Sector', 'slug' => '{sector_slug}', 'route' => 'embed_sector', 'slugEntity' => 'Sector', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Services', 'slug' => null, 'route' => 'embed_services', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Service', 'slug' => '{service_slug}', 'route' => 'embed_service', 'slugEntity' => 'Service', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Client Slider', 'slug' => null, 'route' => 'embed_client_slider', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Featured CaseStudies', 'slug' => null, 'route' => 'embed_featured_casestudies', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Case Study', 'slug' => '{study_slug}', 'route' => 'embed_study', 'slugEntity' => 'CaseStudies', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Accreditations', 'slug' => null, 'route' => 'embed_accreditations', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Meet the Team', 'slug' => null, 'route' => 'embed_meettheteam', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Team Member', 'slug' => '{teammember_slug}', 'route' => 'embed_teammember', 'slugEntity' => 'TeamMember', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'News Overview', 'slug' => null, 'route' => 'embed_news_overview', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'News Article', 'slug' => '{news_slug}', 'route' => 'embed_news_article', 'slugEntity' => 'News', 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Search Results', 'slug' => null, 'route' => 'process_search', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard'), array('name' => 'Embed Slider', 'slug' => null, 'route' => 'embed_slider', 'slugEntity' => null, 'bundle' => 'App', 'componentType' => 'standard')), array(array('position' => 'Page Top', 'route' => 'embed_slider'), array('position' => 'Before Content', 'route' => 'embed_featured_sectors'), array('position' => 'Home Services', 'route' => 'embed_services'), array('position' => 'Home Sectors', 'route' => 'embed_sectors'), array('position' => 'Client Slider', 'route' => 'embed_client_slider'), array('position' => 'Enquiry Form', 'route' => 'embed_enquiry')), object(Request), 1)
     (src/Controller/PageDefaultController.php:433)
  at App\Controller\PageDefaultController->routeMatcherV2(object(Request), 'home')
     (src/Controller/PageDefaultController.php:935)
  at App\Controller\PageDefaultController->router(object(SimpleCache), object(Request), 'home')
     (vendor/symfony/http-kernel/HttpKernel.php:163)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:75)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:35)
  at require_once('/var/www/html/s/stablescaffolding/vendor/autoload_runtime.php')
     (public/index.php:5)                
Loading…
Loading the web debug toolbar…
Attempt #