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
Route not matched: showing 404 page (404 Not Found)

Symfony Exception

NotFoundHttpException

HTTP 404 Not Found

Route not matched: showing 404 page

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.      *
  2.      *     throw $this->createNotFoundException('Page not found!');
  3.      */
  4.     protected function createNotFoundException(string $message 'Not Found'\Throwable $previous null): NotFoundHttpException
  5.     {
  6.         return new NotFoundHttpException($message$previous);
  7.     }
  8.     /**
  9.      * Returns an AccessDeniedException.
  10.      *
AbstractController->createNotFoundException('Route not matched: showing 404 page') in src/Controller/PageDefaultController.php (line 633)
  1.                 }
  2.             }
  3.         } // end if($multilingual)
  4.         // return new Response('<p>End - showing 404 page</p>');
  5.         throw $this->createNotFoundException('Route not matched: showing 404 page');
  6.     }
  7.     public function renderPageWithURLComponents($request$confirmedPage$slug$cmsComponentArray)
  8.     {
  9.         $debug = (bool) $request->query->has('_debug');
PageDefaultController->routeMatcherV2(object(Request), 'sitemap.xml') 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 1

Level Channel Message
INFO 21:22:24 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 21:22:24 request Matched route "router".
{
    "route": "router",
    "route_parameters": {
        "_route": "router",
        "_controller": "App\\Controller\\PageDefaultController::router",
        "slug": "sitemap.xml"
    },
    "request_uri": "https://stablescaffolding.dev123.site/sitemap.xml",
    "method": "GET"
}
INFO 21:22:24 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 21:22:24 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 21:22:24 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 21:22:24 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 21:22:24 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 21:22:24 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 21:22:24 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 21:22:24 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 php User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 security Populated the TokenStorage with an anonymous Token.
INFO 21:22:25 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 21:22:25 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 21:22:25 php User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 21:22:25 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 21:22:25 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 21:22:25 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": {}
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:22:25 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:22:25 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:22:25 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:22:25 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:22:25 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 php Deprecated: App\Entity\Page::setParent(): Implicitly marking parameter $parent as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 php Deprecated: App\Entity\Page::setTemplate(): Implicitly marking parameter $template as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 php Deprecated: App\Entity\MenuItems::setMenuId(): Implicitly marking parameter $menuId as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 php Deprecated: App\Entity\MenuItems::setPageId(): Implicitly marking parameter $pageId as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 php Deprecated: App\Entity\PagePreview::setPage(): Implicitly marking parameter $page as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 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 21:22:25 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 21:22:25 php Deprecated: App\Controller\AdminDefaultController::showAdminHeader(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 php Deprecated: App\Entity\Menu::setUpdatedBy(): Implicitly marking parameter $updatedBy as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 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 21:22:25 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": "sitemap.xml",
        "2": 0,
        "3": 1
    },
    "types": {
        "1": 2,
        "2": 5,
        "3": 5
    }
}
DEBUG 21:22:25 doctrine Executing query: 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
{
    "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"
}
INFO 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 php Deprecated: App\Entity\SliderImages::setImages(): Implicitly marking parameter $images as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 php Deprecated: App\Entity\SliderImages::setSlider(): Implicitly marking parameter $slider as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 php Deprecated: Symfony\Component\HttpKernel\Exception\NotFoundHttpException::__construct(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 php Deprecated: Symfony\Component\HttpKernel\Exception\HttpException::__construct(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:25 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 21:22:25 php Deprecated: Creation of dynamic property Gregwar\ImageBundle\Services\ImageHandling::$fallbackImage is deprecated
{
    "exception": {}
}
INFO 21:22:25 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 21:22:25 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": {}
}
ERROR 21:22:25 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "Route not matched: showing 404 page" at /var/www/html/s/stablescaffolding/vendor/symfony/framework-bundle/Controller/AbstractController.php line 340
{
    "exception": {}
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:22:25 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
INFO 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:25 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 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 21:22:26 php Deprecated: Symfony\Component\Mime\FileinfoMimeTypeGuesser::__construct(): Implicitly marking parameter $magicFile as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:26 php Deprecated: Symfony\Component\Yaml\Parser::getNextEmbedBlock(): Implicitly marking parameter $indentation as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 21:22:26 php Deprecated: Symfony\Component\Yaml\Parser::preg_match(): Implicitly marking parameter $matches as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 21:22:26 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:22:26 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:22:26 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:22:26 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:22:26 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:22:26 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:22:26 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 21:22:26 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 21:22:26 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

NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
Route not matched: showing 404 page

  at vendor/symfony/framework-bundle/Controller/AbstractController.php:340
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->createNotFoundException('Route not matched: showing 404 page')
     (src/Controller/PageDefaultController.php:633)
  at App\Controller\PageDefaultController->routeMatcherV2(object(Request), 'sitemap.xml')
     (src/Controller/PageDefaultController.php:935)
  at App\Controller\PageDefaultController->router(object(SimpleCache), object(Request), 'sitemap.xml')
     (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 #