Deprecated: Constant E_STRICT is deprecated since 8.4, the error level was removed in /homepages/46/d819192280/htdocs/test1/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated since 8.4, the error level was removed in /homepages/46/d819192280/htdocs/test1/vendor/symfony/error-handler/ErrorHandler.php on line 76
Notice: tempnam(): file created in the system's temporary directory (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Notice: tempnam(): file created in the system's temporary directory

Exception

ErrorException

Show exception properties
ErrorException {#1909
  #severity: E_NOTICE
}
  1.             }
  2.         } elseif (!is_writable($dir)) {
  3.             throw new \RuntimeException(sprintf('Unable to write in the cache directory (%s).'$dir));
  4.         }
  5.         $tmpFile tempnam($dirbasename($key));
  6.         if (false !== @file_put_contents($tmpFile$content) && @rename($tmpFile$key)) {
  7.             @chmod($key0666 & ~umask());
  8.             if (self::FORCE_BYTECODE_INVALIDATION == ($this->options self::FORCE_BYTECODE_INVALIDATION)) {
  9.                 // Compile cached file into bytecode cache
  1.             $source null;
  2.             if (!class_exists($clsfalse)) {
  3.                 $source $this->getLoader()->getSourceContext($name);
  4.                 $content $this->compileSource($source);
  5.                 $this->cache->write($key$content);
  6.                 $this->cache->load($key);
  7.                 if (!class_exists($mainClsfalse)) {
  8.                     /* Last line of defense if either $this->bcWriteCacheFile was used,
  9.                      * $this->cache is implemented as a no-op or we have a race condition
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.             if ($v instanceof FormInterface) {
  2.                 $parameters[$k] = $v->createView();
  3.             }
  4.         }
  5.         return $this->container->get('twig')->render($view$parameters);
  6.     }
  7.     /**
  8.      * Renders a view.
  9.      *
  1.      * If an invalid form is found in the list of parameters, a 422 status code is returned.
  2.      * Forms found in parameters are auto-cast to form views.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         $content $this->renderView($view$parameters);
  7.         $response ??= new Response();
  8.         if (200 === $response->getStatusCode()) {
  9.             foreach ($parameters as $v) {
  10.                 if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
AbstractController->render() in src/Controller/DefaultController.php (line 29)
  1. class DefaultController extends AbstractController
  2. {
  3.     #[Route('/'name'app_default')]
  4.     public function index(FieldsRepository $fieldsRepositoryPagesRepository $pagesRepositoryTagsRepository $tagsRepositoryProjectsRepository $projectsRepositoryPostsRepository $postsRepository): Response
  5.     {
  6.         return $this->render('default/index.html.twig', [
  7.             'menu' => 'inicio',
  8.         ]);
  9.     }
  10.     #[Route('/servicios'name'app_servicios')]
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.         $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 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/homepages/46/d819192280/htdocs/test1/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 10:55:19 deprecation Deprecated: Symfony\Component\Config\ResourceCheckerConfigCache::write(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Config\ConfigCacheInterface::write(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $query as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $attributes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $cookies as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $files as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $server as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::getPreferredLanguage(): Implicitly marking parameter $locales as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::getTrustedValues(): Implicitly marking parameter $ip as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ParameterBag::all(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ParameterBag::getEnum(): Implicitly marking parameter $default as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\HeaderBag::all(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\HeaderBag::get(): Implicitly marking parameter $default as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\HeaderBag::getDate(): Implicitly marking parameter $default as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\InputBag::getEnum(): Implicitly marking parameter $default as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ApcuAdapter::__construct(): Implicitly marking parameter $version as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ApcuAdapter::__construct(): Implicitly marking parameter $marshaller as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\AbstractAdapter::createSystemCache(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Traits\ContractsTrait::doGet(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheTrait::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheTrait::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheTrait::doGet(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheTrait::doGet(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheInterface::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheInterface::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ArrayAdapter::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ArrayAdapter::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ChainAdapter::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ChainAdapter::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:Symfony\Component\Cache\Adapter\ChainAdapter::get():101}(): Implicitly marking parameter $item as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\PhpArrayAdapter::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\PhpArrayAdapter::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\PhpFilesAdapter::__construct(): Implicitly marking parameter $directory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Traits\FilesystemCommonTrait::write(): Implicitly marking parameter $expiresAt as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Traits\FilesystemCommonTrait::getFile(): Implicitly marking parameter $directory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\ContainerAwareTrait::setContainer(): Implicitly marking parameter $container as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:Symfony\Bundle\DebugBundle\DebugBundle::boot():38}(): Implicitly marking parameter $label as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:{closure:Symfony\Bundle\DebugBundle\DebugBundle::boot():38}:41}(): Implicitly marking parameter $label as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\Container::__construct(): Implicitly marking parameter $parameterBag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\Argument\ServiceLocator::__construct(): Implicitly marking parameter $serviceTypes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\ServiceLocator::formatAlternatives(): Implicitly marking parameter $alternatives as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Config\Resource\ClassExistenceResource::__construct(): Implicitly marking parameter $exists as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Config\Resource\ClassExistenceResource::throwOnRequiredClass(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\HttpKernel::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\HttpKernel::__construct(): Implicitly marking parameter $argumentResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\HttpKernel::terminateWithException(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Event\ControllerArgumentsEvent::setController(): Implicitly marking parameter $attributes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Event\ControllerEvent::setController(): Implicitly marking parameter $attributes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Event\ViewEvent::__construct(): Implicitly marking parameter $controllerArgumentsEvent as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Controller\ArgumentResolver::__construct(): Implicitly marking parameter $namedResolvers as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Controller\ArgumentResolver::getArguments(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadataFactory::createArgumentMetadata(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Contracts\Translation\TranslatorInterface::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Translation\TranslatorInterface::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\TranslatorBagInterface::getCatalogue(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::__construct(): Implicitly marking parameter $formatter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::__construct(): Implicitly marking parameter $cacheDir as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::addResource(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::getCatalogue(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\MessageCatalogue::all(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\MessageCatalogueInterface::all(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Contracts\Translation\TranslatorTrait::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Translation\TranslatorTrait::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Debug\FileLinkFormatter::__construct(): Implicitly marking parameter $fileLinkFormat as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Debug\FileLinkFormatter::__construct(): Implicitly marking parameter $urlFormat as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\Stopwatch::openSection(): Implicitly marking parameter $id as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\Stopwatch::start(): Implicitly marking parameter $category as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\Section::__construct(): Implicitly marking parameter $origin as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Monolog\Logger::addRecord(): Implicitly marking parameter $datetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::__construct(): Implicitly marking parameter $cacheItemPool as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::__construct(): Implicitly marking parameter $readInfoExtractor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::__construct(): Implicitly marking parameter $writeInfoExtractor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::throwInvalidArgumentException(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::createCache(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validation::createCallable(): Implicitly marking parameter $constraintOrValidator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validation::createIsValidCallable(): Implicitly marking parameter $constraintOrValidator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:Symfony\Component\Validator\Validation::createIsValidCallable():56}(): Implicitly marking parameter $violations as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\ValidatorInterface::validate(): Implicitly marking parameter $constraints as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\ValidatorInterface::validate(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\ValidatorInterface::validateProperty(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\ValidatorInterface::validatePropertyValue(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\TraceableValidator::validate(): Implicitly marking parameter $constraints as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\TraceableValidator::validate(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\TraceableValidator::validateProperty(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\TraceableValidator::validatePropertyValue(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableSerializer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableSerializer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableSerializer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableSerializer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Serializer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Serializer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Serializer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Serializer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $classMetadataFactory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $nameConverter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $propertyTypeExtractor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $classDiscriminatorResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $objectClassResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\DataCollector\SerializerDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Doctrine\ContainerAwareEventManager::dispatchEvent(): Implicitly marking parameter $eventArgs as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Monolog\Logger::getLogs(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Monolog\Logger::countErrors(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface::isAuthenticated(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\ExpressionLanguage\ExpressionLanguage::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Security\Core\Authorization\AccessDecisionManager::__construct(): Implicitly marking parameter $strategy as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Twig\Template::displayBlock(): Implicitly marking parameter $templateContext as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Environment::getTemplateClass(): Implicitly marking parameter $index as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Environment::loadTemplate(): Implicitly marking parameter $index as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Environment::createTemplate(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Loader\FilesystemLoader::__construct(): Implicitly marking parameter $rootPath as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Packages::__construct(): Implicitly marking parameter $defaultPackage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Packages::getPackage(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Packages::getVersion(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Packages::getUrl(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Package::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\PathPackage::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: FOS\CKEditorBundle\Builder\JsonBuilder::setValues(): Implicitly marking parameter $pathPrefix as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Twig\AppVariable::getFlashes(): Implicitly marking parameter $types as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\DumpDataCollector::__construct(): Implicitly marking parameter $fileLinkFormat as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\DumpDataCollector::__construct(): Implicitly marking parameter $dumper as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Contracts\EventDispatcher\EventDispatcherInterface::dispatch(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcherInterface::getListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcherInterface::hasListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcher::dispatch(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcher::getListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcher::hasListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\DataCollectorTranslator::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\DataCollectorTranslator::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\DataCollectorTranslator::getCatalogue(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Router::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Router::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Router::__construct(): Implicitly marking parameter $defaultLocale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::__construct(): Implicitly marking parameter $dispatchers as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::setCalledListeners(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::getCalledListeners(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::setNotCalledListeners(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::getNotCalledListeners(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::setOrphanedEvents(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::getOrphanedEvents(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\DataCollector\MessageDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Debug\ErrorHandlerConfigurator::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Debug\ErrorHandlerConfigurator::__construct(): Implicitly marking parameter $deprecationLogger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\VarDumper::setHandler(): Implicitly marking parameter $callable as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:Symfony\Component\VarDumper\VarDumper::register():99}(): Implicitly marking parameter $label as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Faker\Generator::__construct(): Implicitly marking parameter $container as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Faker\Container\ContainerBuilder::add(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Faker\Provider\DateTime::timezone(): Implicitly marking parameter $countryCode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\Debug\WrappedListener::__construct(): Implicitly marking parameter $priority as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\Caster\ClassStub::__construct(): Implicitly marking parameter $callable as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\Caster\ConstStub::__construct(): Implicitly marking parameter $value as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\StopwatchEvent::__construct(): Implicitly marking parameter $category as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\StopwatchEvent::__construct(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 request Matched route "app_default".
{
    "route": "app_default",
    "route_parameters": {
        "_route": "app_default",
        "_controller": "App\\Controller\\DefaultController::index"
    },
    "request_uri": "http://construccionesacero.com/",
    "method": "GET"
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\String\Slugger\AsciiSlugger::__construct(): Implicitly marking parameter $symbolsMap as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\Authenticator\AbstractLoginFormAuthenticator::start(): Implicitly marking parameter $authException as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator::start(): Implicitly marking parameter $authException as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\HttpUtils::__construct(): Implicitly marking parameter $urlMatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\Firewall\ChannelListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\Authentication\AuthenticatorManager::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 10:55:19 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 2
}
DEBUG 10:55:19 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\LoginAuthenticator"
}
DEBUG 10:55:19 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\LoginAuthenticator"
}
DEBUG 10:55:19 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 10:55:19 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::file(): Implicitly marking parameter $fileName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::render(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::renderForm(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::stream(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::createNotFoundException(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::createAccessDeniedException(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::sendEarlyHints(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata::getAttributes(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarExporter\LazyGhostTrait::createLazyGhost(): Implicitly marking parameter $skippedProperties as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarExporter\LazyGhostTrait::createLazyGhost(): Implicitly marking parameter $instance as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\ExpressionLanguage\ExpressionFunction::fromPhp(): Implicitly marking parameter $expressionFunctionName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\EnvVarProcessor::__construct(): Implicitly marking parameter $loaders as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $stateless as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "ContainerTRt8H5K\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerTRt8H5K\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 10:55:19 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 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Secrets\SodiumVault::__construct(): Implicitly marking parameter $decryptionKey as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyInfo\Type::__construct(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyInfo\Type::__construct(): Implicitly marking parameter $collectionKeyType as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyInfo\Type::__construct(): Implicitly marking parameter $collectionValueType as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\NodeVisitor\SafeAnalysisNodeVisitor::intersectSafe(): Implicitly marking parameter $a as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\NodeVisitor\SafeAnalysisNodeVisitor::intersectSafe(): Implicitly marking parameter $b as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Twig\NodeVisitor\Scope::__construct(): Implicitly marking parameter $parent as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\TokenStream::__construct(): Implicitly marking parameter $source as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\TokenStream::expect(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Parser::addImportedSymbol(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Parser::addImportedSymbol(): Implicitly marking parameter $node as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\Node::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\BlockNode::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\BlockReferenceNode::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\PrintNode::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\Expression\FilterExpression::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\RecursiveValidator::validate(): Implicitly marking parameter $constraints as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\RecursiveValidator::validate(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\RecursiveValidator::validateProperty(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\RecursiveValidator::validatePropertyValue(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\Event\MessageEvents::getEvents(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\Event\MessageEvents::getMessages(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\ErrorHandler\Exception\FlattenException::createWithDataRepresentation(): Implicitly marking parameter $statusCode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\ErrorHandler\Exception\FlattenException::createWithDataRepresentation(): Implicitly marking parameter $cloner as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::setStatusCode(): Implicitly marking parameter $text as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::setExpires(): Implicitly marking parameter $date as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::setLastModified(): Implicitly marking parameter $date as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::setEtag(): Implicitly marking parameter $etag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::isRedirect(): Implicitly marking parameter $location as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::all(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::removeCookie(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::clearCookie(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::clearCookie(): Implicitly marking parameter $sameSite as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
CRITICAL 10:55:19 request Uncaught PHP Exception ErrorException: "Notice: tempnam(): file created in the system's temporary directory" at /homepages/46/d819192280/htdocs/test1/vendor/twig/twig/src/Cache/FilesystemCache.php line 60
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\ErrorHandler\ErrorRenderer\HtmlErrorRenderer::__construct(): Implicitly marking parameter $fileLinkFormat as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Mime\FileinfoMimeTypeGuesser::__construct(): Implicitly marking parameter $magicFile as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Yaml\Parser::getNextEmbedBlock(): Implicitly marking parameter $indentation as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Yaml\Parser::preg_match(): Implicitly marking parameter $matches as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "ContainerTRt8H5K\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerTRt8H5K\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 10:55:19 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 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\Caster\Caster::castObject(): Implicitly marking parameter $debugClass as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Constant E_STRICT is deprecated since 8.4, the error level was removed
{
    "exception": {}
}

Stack Trace

ErrorException
ErrorException:
Notice: tempnam(): file created in the system's temporary directory

  at vendor/twig/twig/src/Cache/FilesystemCache.php:60
  at Twig\Cache\FilesystemCache->write()
     (vendor/twig/twig/src/Environment.php:352)
  at Twig\Environment->loadTemplate()
     (vendor/twig/twig/src/Environment.php:312)
  at Twig\Environment->load()
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:243)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->renderView()
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:254)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render()
     (src/Controller/DefaultController.php:29)
  at App\Controller\DefaultController->index()
     (vendor/symfony/http-kernel/HttpKernel.php:181)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/homepages/46/d819192280/htdocs/test1/vendor/autoload_runtime.php')
     (public/index.php:5)                
Warning: file_put_contents(/homepages/46/d819192280/htdocs/test1/var/cache/dev/profiler/12/8e/d08e12): Failed to open stream: Disk quota exceeded (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Warning: file_put_contents(/homepages/46/d819192280/htdocs/test1/var/cache/dev/profiler/12/8e/d08e12): Failed to open stream: Disk quota exceeded

Exception

ErrorException

Show exception properties
ErrorException {#2319
  #severity: E_WARNING
}
  1.         if (\function_exists('gzencode')) {
  2.             $data gzencode($data3);
  3.         }
  4.         if (false === file_put_contents($file$data\LOCK_EX)) {
  5.             return false;
  6.         }
  7.         if (!$profileIndexed) {
  8.             // Add to index
  1.             if ($collector instanceof LateDataCollectorInterface) {
  2.                 $collector->lateCollect();
  3.             }
  4.         }
  5.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  6.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
  7.         }
  8.         return $ret;
  9.     }
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * @return void
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
in vendor/symfony/http-kernel/Kernel.php -> terminate (line 157)
  1.         if (false === $this->booted) {
  2.             return;
  3.         }
  4.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  5.             $this->getHttpKernel()->terminate($request$response);
  6.         }
  7.     }
  8.     /**
  9.      * @return void
  1.     {
  2.         $response $this->kernel->handle($this->request);
  3.         $response->send();
  4.         if ($this->kernel instanceof TerminableInterface) {
  5.             $this->kernel->terminate($this->request$response);
  6.         }
  7.         return 0;
  8.     }
  9. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/homepages/46/d819192280/htdocs/test1/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 10:55:19 deprecation Deprecated: Symfony\Component\Config\ResourceCheckerConfigCache::write(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Config\ConfigCacheInterface::write(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $query as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $attributes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $cookies as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $files as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::duplicate(): Implicitly marking parameter $server as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::getPreferredLanguage(): Implicitly marking parameter $locales as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Request::getTrustedValues(): Implicitly marking parameter $ip as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ParameterBag::all(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ParameterBag::getEnum(): Implicitly marking parameter $default as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\HeaderBag::all(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\HeaderBag::get(): Implicitly marking parameter $default as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\HeaderBag::getDate(): Implicitly marking parameter $default as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\InputBag::getEnum(): Implicitly marking parameter $default as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ApcuAdapter::__construct(): Implicitly marking parameter $version as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ApcuAdapter::__construct(): Implicitly marking parameter $marshaller as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\AbstractAdapter::createSystemCache(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Traits\ContractsTrait::doGet(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheTrait::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheTrait::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheTrait::doGet(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheTrait::doGet(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheInterface::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Cache\CacheInterface::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ArrayAdapter::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ArrayAdapter::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ChainAdapter::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\ChainAdapter::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:Symfony\Component\Cache\Adapter\ChainAdapter::get():101}(): Implicitly marking parameter $item as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\PhpArrayAdapter::get(): Implicitly marking parameter $beta as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\PhpArrayAdapter::get(): Implicitly marking parameter $metadata as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Adapter\PhpFilesAdapter::__construct(): Implicitly marking parameter $directory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Traits\FilesystemCommonTrait::write(): Implicitly marking parameter $expiresAt as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Cache\Traits\FilesystemCommonTrait::getFile(): Implicitly marking parameter $directory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\ContainerAwareTrait::setContainer(): Implicitly marking parameter $container as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:Symfony\Bundle\DebugBundle\DebugBundle::boot():38}(): Implicitly marking parameter $label as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:{closure:Symfony\Bundle\DebugBundle\DebugBundle::boot():38}:41}(): Implicitly marking parameter $label as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\Container::__construct(): Implicitly marking parameter $parameterBag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\Argument\ServiceLocator::__construct(): Implicitly marking parameter $serviceTypes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\ServiceLocator::formatAlternatives(): Implicitly marking parameter $alternatives as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Config\Resource\ClassExistenceResource::__construct(): Implicitly marking parameter $exists as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Config\Resource\ClassExistenceResource::throwOnRequiredClass(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\HttpKernel::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\HttpKernel::__construct(): Implicitly marking parameter $argumentResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\HttpKernel::terminateWithException(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Event\ControllerArgumentsEvent::setController(): Implicitly marking parameter $attributes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Event\ControllerEvent::setController(): Implicitly marking parameter $attributes as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Event\ViewEvent::__construct(): Implicitly marking parameter $controllerArgumentsEvent as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Controller\ArgumentResolver::__construct(): Implicitly marking parameter $namedResolvers as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Controller\ArgumentResolver::getArguments(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadataFactory::createArgumentMetadata(): Implicitly marking parameter $reflector as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Contracts\Translation\TranslatorInterface::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Translation\TranslatorInterface::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\TranslatorBagInterface::getCatalogue(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::__construct(): Implicitly marking parameter $formatter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::__construct(): Implicitly marking parameter $cacheDir as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::addResource(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\Translator::getCatalogue(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\MessageCatalogue::all(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\MessageCatalogueInterface::all(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Contracts\Translation\TranslatorTrait::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Contracts\Translation\TranslatorTrait::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Debug\FileLinkFormatter::__construct(): Implicitly marking parameter $fileLinkFormat as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Debug\FileLinkFormatter::__construct(): Implicitly marking parameter $urlFormat as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\Stopwatch::openSection(): Implicitly marking parameter $id as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\Stopwatch::start(): Implicitly marking parameter $category as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\Section::__construct(): Implicitly marking parameter $origin as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Monolog\Logger::addRecord(): Implicitly marking parameter $datetime as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::__construct(): Implicitly marking parameter $cacheItemPool as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::__construct(): Implicitly marking parameter $readInfoExtractor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::__construct(): Implicitly marking parameter $writeInfoExtractor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::throwInvalidArgumentException(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyAccess\PropertyAccessor::createCache(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validation::createCallable(): Implicitly marking parameter $constraintOrValidator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validation::createIsValidCallable(): Implicitly marking parameter $constraintOrValidator as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:Symfony\Component\Validator\Validation::createIsValidCallable():56}(): Implicitly marking parameter $violations as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\ValidatorInterface::validate(): Implicitly marking parameter $constraints as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\ValidatorInterface::validate(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\ValidatorInterface::validateProperty(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\ValidatorInterface::validatePropertyValue(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\TraceableValidator::validate(): Implicitly marking parameter $constraints as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\TraceableValidator::validate(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\TraceableValidator::validateProperty(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\TraceableValidator::validatePropertyValue(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableSerializer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableSerializer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableSerializer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableSerializer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Serializer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Serializer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Serializer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Serializer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Debug\TraceableNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $classMetadataFactory as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $nameConverter as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $propertyTypeExtractor as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $classDiscriminatorResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\Normalizer\PropertyNormalizer::__construct(): Implicitly marking parameter $objectClassResolver as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Serializer\DataCollector\SerializerDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Doctrine\ContainerAwareEventManager::dispatchEvent(): Implicitly marking parameter $eventArgs as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Monolog\Logger::getLogs(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Monolog\Logger::countErrors(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolverInterface::isAuthenticated(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\ExpressionLanguage\ExpressionLanguage::__construct(): Implicitly marking parameter $cache as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Security\Core\Authorization\AccessDecisionManager::__construct(): Implicitly marking parameter $strategy as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Twig\Template::displayBlock(): Implicitly marking parameter $templateContext as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Environment::getTemplateClass(): Implicitly marking parameter $index as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Environment::loadTemplate(): Implicitly marking parameter $index as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Environment::createTemplate(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Loader\FilesystemLoader::__construct(): Implicitly marking parameter $rootPath as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Packages::__construct(): Implicitly marking parameter $defaultPackage as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Packages::getPackage(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Packages::getVersion(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Packages::getUrl(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\Package::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Asset\PathPackage::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: FOS\CKEditorBundle\Builder\JsonBuilder::setValues(): Implicitly marking parameter $pathPrefix as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Twig\AppVariable::getFlashes(): Implicitly marking parameter $types as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\DumpDataCollector::__construct(): Implicitly marking parameter $fileLinkFormat as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\DumpDataCollector::__construct(): Implicitly marking parameter $dumper as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Contracts\EventDispatcher\EventDispatcherInterface::dispatch(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcherInterface::getListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcherInterface::hasListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcher::dispatch(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcher::getListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\EventDispatcher::hasListeners(): Implicitly marking parameter $eventName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\DataCollectorTranslator::trans(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\DataCollectorTranslator::trans(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Translation\DataCollectorTranslator::getCatalogue(): Implicitly marking parameter $locale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Router::__construct(): Implicitly marking parameter $context as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Router::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Router::__construct(): Implicitly marking parameter $defaultLocale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::__construct(): Implicitly marking parameter $dispatchers as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::setCalledListeners(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::getCalledListeners(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::setNotCalledListeners(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::getNotCalledListeners(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::setOrphanedEvents(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\DataCollector\EventDataCollector::getOrphanedEvents(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\DataCollector\MessageDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Debug\ErrorHandlerConfigurator::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\Debug\ErrorHandlerConfigurator::__construct(): Implicitly marking parameter $deprecationLogger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\VarDumper::setHandler(): Implicitly marking parameter $callable as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:Symfony\Component\VarDumper\VarDumper::register():99}(): Implicitly marking parameter $label as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Faker\Generator::__construct(): Implicitly marking parameter $container as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Faker\Container\ContainerBuilder::add(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Faker\Provider\DateTime::timezone(): Implicitly marking parameter $countryCode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\Caster\TraceStub::__construct(): Implicitly marking parameter $sliceLength as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\Caster\LinkStub::__construct(): Implicitly marking parameter $href as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect since PHP 8.1
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Console\EventListener\ErrorListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\EventListener\EnvelopeListener::__construct(): Implicitly marking parameter $sender as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\EventListener\EnvelopeListener::__construct(): Implicitly marking parameter $recipients as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\EventListener\MessageListener::__construct(): Implicitly marking parameter $headers as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\EventListener\MessageListener::__construct(): Implicitly marking parameter $renderer as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\EventListener\DumpListener::__construct(): Implicitly marking parameter $connection as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: {closure:Symfony\Component\HttpKernel\EventListener\DumpListener::configure():48}(): Implicitly marking parameter $label as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect since PHP 8.1
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate"
}
WARNING 10:55:19 php Uncaught Warning: file_put_contents(/homepages/46/d819192280/htdocs/test1/var/cache/dev/profiler/12/8e/d08e12): Failed to open stream: Disk quota exceeded
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\EventDispatcher\Debug\WrappedListener::__construct(): Implicitly marking parameter $priority as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\Caster\ClassStub::__construct(): Implicitly marking parameter $callable as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\Caster\ConstStub::__construct(): Implicitly marking parameter $value as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\StopwatchEvent::__construct(): Implicitly marking parameter $category as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Stopwatch\StopwatchEvent::__construct(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 request Matched route "app_default".
{
    "route": "app_default",
    "route_parameters": {
        "_route": "app_default",
        "_controller": "App\\Controller\\DefaultController::index"
    },
    "request_uri": "http://construccionesacero.com/",
    "method": "GET"
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\String\Slugger\AsciiSlugger::__construct(): Implicitly marking parameter $symbolsMap as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\Authenticator\AbstractLoginFormAuthenticator::start(): Implicitly marking parameter $authException as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator::start(): Implicitly marking parameter $authException as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\HttpUtils::__construct(): Implicitly marking parameter $urlMatcher as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\Firewall\ChannelListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Security\Http\Authentication\AuthenticatorManager::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 10:55:19 security Checking for authenticator support.
{
    "firewall_name": "main",
    "authenticators": 2
}
DEBUG 10:55:19 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\LoginAuthenticator"
}
DEBUG 10:55:19 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "App\\Security\\LoginAuthenticator"
}
DEBUG 10:55:19 security Checking support on authenticator.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 10:55:19 security Authenticator does not support the request.
{
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::file(): Implicitly marking parameter $fileName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::render(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::renderForm(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::stream(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::createNotFoundException(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::createAccessDeniedException(): Implicitly marking parameter $previous as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Controller\AbstractController::sendEarlyHints(): Implicitly marking parameter $response as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata::getAttributes(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarExporter\LazyGhostTrait::createLazyGhost(): Implicitly marking parameter $skippedProperties as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\VarExporter\LazyGhostTrait::createLazyGhost(): Implicitly marking parameter $instance as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\ExpressionLanguage\ExpressionFunction::fromPhp(): Implicitly marking parameter $expressionFunctionName as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\DependencyInjection\EnvVarProcessor::__construct(): Implicitly marking parameter $loaders as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $path as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Annotation\Route::__construct(): Implicitly marking parameter $stateless as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "ContainerTRt8H5K\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerTRt8H5K\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 10:55:19 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 10:55:19 deprecation Deprecated: Symfony\Bundle\FrameworkBundle\Secrets\SodiumVault::__construct(): Implicitly marking parameter $decryptionKey as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyInfo\Type::__construct(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyInfo\Type::__construct(): Implicitly marking parameter $collectionKeyType as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\PropertyInfo\Type::__construct(): Implicitly marking parameter $collectionValueType as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\NodeVisitor\SafeAnalysisNodeVisitor::intersectSafe(): Implicitly marking parameter $a as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\NodeVisitor\SafeAnalysisNodeVisitor::intersectSafe(): Implicitly marking parameter $b as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Bridge\Twig\NodeVisitor\Scope::__construct(): Implicitly marking parameter $parent as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\TokenStream::__construct(): Implicitly marking parameter $source as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\TokenStream::expect(): Implicitly marking parameter $message as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Parser::addImportedSymbol(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Parser::addImportedSymbol(): Implicitly marking parameter $node as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\Node::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\BlockNode::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\BlockReferenceNode::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\PrintNode::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\Expression\FilterExpression::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\RecursiveValidator::validate(): Implicitly marking parameter $constraints as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\RecursiveValidator::validate(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\RecursiveValidator::validateProperty(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Validator\Validator\RecursiveValidator::validatePropertyValue(): Implicitly marking parameter $groups as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\Event\MessageEvents::getEvents(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Mailer\Event\MessageEvents::getMessages(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\ErrorHandler\Exception\FlattenException::createWithDataRepresentation(): Implicitly marking parameter $statusCode as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\ErrorHandler\Exception\FlattenException::createWithDataRepresentation(): Implicitly marking parameter $cloner as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::setStatusCode(): Implicitly marking parameter $text as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::setExpires(): Implicitly marking parameter $date as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::setLastModified(): Implicitly marking parameter $date as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::setEtag(): Implicitly marking parameter $etag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Response::isRedirect(): Implicitly marking parameter $location as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::all(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::removeCookie(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::clearCookie(): Implicitly marking parameter $domain as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::clearCookie(): Implicitly marking parameter $sameSite as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
CRITICAL 10:55:19 request Uncaught PHP Exception ErrorException: "Notice: tempnam(): file created in the system's temporary directory" at /homepages/46/d819192280/htdocs/test1/vendor/twig/twig/src/Cache/FilesystemCache.php line 60
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.exception" to listener "Symfony\Component\Security\Http\Firewall\ExceptionListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ExceptionListener::onKernelException"
}
DEBUG 10:55:19 event Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::logKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::logKernelException"
}
DEBUG 10:55:19 event Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelException"
}
DEBUG 10:55:19 event Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelException"
}
DEBUG 10:55:19 event Notified event "kernel.exception" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onKernelException"
}
DEBUG 10:55:19 event Listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onKernelException" stopped propagation of the event "kernel.exception".
{
    "event": "kernel.exception",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onKernelException"
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\Expression\ArrayExpression::addElement(): Implicitly marking parameter $key as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Twig\Node\IfNode::__construct(): Implicitly marking parameter $tag as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 10:55:19 php Warning: mkdir(): Disk quota exceeded
{
    "exception": {
        "severity": 2,
        "file": "/homepages/46/d819192280/htdocs/test1/vendor/twig/twig/src/Cache/FilesystemCache.php",
        "line": 50,
        "trace": [
            {
                "file": "/homepages/46/d819192280/htdocs/test1/vendor/twig/twig/src/Environment.php",
                "line": 352,
                "function": "write",
                "class": "Twig\\Cache\\FilesystemCache",
                "type": "->"
            }
        ],
        "count": 1
    }
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::detach() is deprecated since 8.5, use method SplObjectStorage::offsetUnset() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::detach() is deprecated since 8.5, use method SplObjectStorage::offsetUnset() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
CRITICAL 10:55:19 request Uncaught PHP Exception ErrorException: "Warning: file_put_contents(/homepages/46/d819192280/htdocs/test1/var/cache/dev/profiler/12/8e/d08e12): Failed to open stream: Disk quota exceeded" at /homepages/46/d819192280/htdocs/test1/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 160
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\ErrorHandler\ErrorRenderer\HtmlErrorRenderer::__construct(): Implicitly marking parameter $fileLinkFormat as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Mime\FileinfoMimeTypeGuesser::__construct(): Implicitly marking parameter $magicFile as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Yaml\Parser::getNextEmbedBlock(): Implicitly marking parameter $indentation as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Symfony\Component\Yaml\Parser::preg_match(): Implicitly marking parameter $matches as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "ContainerTRt8H5K\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerTRt8H5K\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 10:55:19 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 10:55:19 deprecation Deprecated: Symfony\Component\VarDumper\Caster\Caster::castObject(): Implicitly marking parameter $debugClass as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Constant E_STRICT is deprecated since 8.4, the error level was removed
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorageFactory::__construct(): Implicitly marking parameter $handler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage::__construct(): Implicitly marking parameter $handler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage::setSaveHandler(): Implicitly marking parameter $saveHandler as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
INFO 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation 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 10:55:19 deprecation Deprecated: Symfony\Component\Routing\Generator\UrlGenerator::__construct(): Implicitly marking parameter $defaultLocale as nullable is deprecated, the explicit nullable type must be used instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 10:55:19 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 10:55:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 10:55:19 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 10:55:19 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 10:55:19 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 10:55:19 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
INFO 10:55:19 deprecation Deprecated: Method SplObjectStorage::attach() is deprecated since 8.5, use method SplObjectStorage::offsetSet() instead
{
    "exception": {}
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 10:55:19 event Notified event "kernel.controller_arguments" to listener "ContainerTRt8H5K\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerTRt8H5K\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 10:55:19 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

ErrorException
ErrorException:
Warning: file_put_contents(/homepages/46/d819192280/htdocs/test1/var/cache/dev/profiler/12/8e/d08e12): Failed to open stream: Disk quota exceeded

  at vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:160
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write()
     (vendor/symfony/http-kernel/Profiler/Profiler.php:104)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile()
     (vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:115)
  at Symfony\Component\HttpKernel\HttpKernel->terminate()
     (vendor/symfony/http-kernel/Kernel.php:157)
  at Symfony\Component\HttpKernel\Kernel->terminate()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:39)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/homepages/46/d819192280/htdocs/test1/vendor/autoload_runtime.php')
     (public/index.php:5)                
Symfony\Component\VarDumper\Cloner\Data objects are immutable. (500 Internal Server Error)

Symfony Exception

BadMethodCallException

HTTP 500 Internal Server Error

Symfony\Component\VarDumper\Cloner\Data objects are immutable.

Exception

BadMethodCallException

  1.         return $this->__get($key);
  2.     }
  3.     public function offsetSet(mixed $keymixed $value): void
  4.     {
  5.         throw new \BadMethodCallException(self::class.' objects are immutable.');
  6.     }
  7.     public function offsetUnset(mixed $key): void
  8.     {
  9.         throw new \BadMethodCallException(self::class.' objects are immutable.');
  1.     /**
  2.      * @see TraceableEventDispatcher
  3.      */
  4.     public function setCalledListeners(array $listenersstring $dispatcher null): void
  5.     {
  6.         $this->data[$dispatcher ?? $this->defaultDispatcher]['called_listeners'] = $listeners;
  7.     }
  8.     /**
  9.      * @see TraceableEventDispatcher
  10.      */
  1.         foreach ($this->dispatchers as $name => $dispatcher) {
  2.             if (!$dispatcher instanceof TraceableEventDispatcher) {
  3.                 continue;
  4.             }
  5.             $this->setCalledListeners($dispatcher->getCalledListeners($this->currentRequest), $name);
  6.             $this->setNotCalledListeners($dispatcher->getNotCalledListeners($this->currentRequest), $name);
  7.             $this->setOrphanedEvents($dispatcher->getOrphanedEvents($this->currentRequest), $name);
  8.         }
  9.         $this->data $this->cloneVar($this->data);
  1.     public function saveProfile(Profile $profile): bool
  2.     {
  3.         // late collect
  4.         foreach ($profile->getCollectors() as $collector) {
  5.             if ($collector instanceof LateDataCollectorInterface) {
  6.                 $collector->lateCollect();
  7.             }
  8.         }
  9.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  10.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => $this->storage::class]);
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * @return void
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
  1.         }
  2.         $response->sendHeaders();
  3.         $response->sendContent();
  4.         $this->terminate($request$response);
  5.     }
  6.     /**
  7.      * Handles a request to convert it to a response.
  8.      *
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /homepages/46/d819192280/htdocs/test1/vendor/symfony/error-handler/ErrorHandler.php :: {closure:Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure():68} (line 537)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 $exceptionHandler($exception);
  6.                 return;
  7.             }
  8.             $handlerException ??= $exception;
  9.         } catch (\Throwable $handlerException) {
ErrorHandler->handleException()

Stack Trace

BadMethodCallException
BadMethodCallException:
Symfony\Component\VarDumper\Cloner\Data objects are immutable.

  at /homepages/46/d819192280/htdocs/test1/vendor/symfony/var-dumper/Cloner/Data.php:152
  at Symfony\Component\VarDumper\Cloner\Data->offsetSet()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php:92)
  at Symfony\Component\HttpKernel\DataCollector\EventDataCollector->setCalledListeners()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php:74)
  at Symfony\Component\HttpKernel\DataCollector\EventDataCollector->lateCollect()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/http-kernel/Profiler/Profiler.php:100)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/http-kernel/HttpKernel.php:115)
  at Symfony\Component\HttpKernel\HttpKernel->terminate()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/http-kernel/HttpKernel.php:142)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:74)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::{closure:Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure():68}()
     (/homepages/46/d819192280/htdocs/test1/vendor/symfony/error-handler/ErrorHandler.php:537)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()