Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#767 -statusCode: 404 -headers: [] }
if ($referer = $request->headers->get('referer')) {$message .= sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 157)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;}public function run(): int{$response = $this->kernel->handle($this->request);$response->send();if ($this->kernel instanceof TerminableInterface) {$this->kernel->terminate($this->request, $response);}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/eliotisc/bts-sio-2024-2026.eliotis.com/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {goto redirect_scheme;}}throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));}private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array{$allow = $allowSchemes = [];
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 97)
public function matchRequest(Request $request): array{$this->request = $request;$ret = $this->match($request->getPathInfo());$this->request = null;return $ret;}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 237)
if (!$matcher instanceof RequestMatcherInterface) {// fallback to the default UrlMatcherInterfacereturn $matcher->match($request->getPathInfo());}return $matcher->matchRequest($request);}/*** Gets the UrlMatcher or RequestMatcher instance associated with this Router.*/
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 105)
// add attributes based on the request (routing)try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}$this->logger?->info('Matched route "{route}".', [
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 116)
$this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');try {($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 220)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 56)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 139)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 157)
*/private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response{// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 76)
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());$this->requestStack->push($request);$response = null;try {return $response = $this->handleRaw($request, $type);} catch (\Throwable $e) {if ($e instanceof \Error && !$this->handleAllThrowables) {throw $e;}
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 197)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
in
vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
->
handle
(line 35)
$this->request = $request;}public function run(): int{$response = $this->kernel->handle($this->request);$response->send();if ($this->kernel instanceof TerminableInterface) {$this->kernel->terminate($this->request, $response);}
in
vendor/autoload_runtime.php
->
run
(line 29)
$app = $app(...$args);exit($runtime->getRunner($app)->run());
require_once('/home/eliotisc/bts-sio-2024-2026.eliotis.com/vendor/autoload_runtime.php')
in
public/index.php
(line 5)
<?phpuse App\Kernel;require_once dirname(__DIR__).'/vendor/autoload_runtime.php';return function (array $context) {return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);};
Logs
| Level | Channel | Message |
|---|---|---|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::build()" might add "void" as a native return type declaration in the future. Do the same in child class "Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle" now to avoid errors or add an explicit @return annotation to suppress this message. {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\Filesystem\Filesystem::touch(): Implicitly marking parameter $time as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Filesystem\Filesystem::touch(): Implicitly marking parameter $atime as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Filesystem\Filesystem::mirror(): Implicitly marking parameter $iterator as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\Asset\VersionStrategy\JsonManifestVersionStrategy::__construct(): Implicitly marking parameter $httpClient as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Contracts\HttpClient\HttpClientInterface::stream(): Implicitly marking parameter $timeout as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Monolog\Logger::addRecord(): Implicitly marking parameter $datetime as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\Security\Csrf\CsrfTokenManager::__construct(): Implicitly marking parameter $generator as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Security\Csrf\CsrfTokenManager::__construct(): Implicitly marking parameter $storage as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Security\Csrf\CsrfTokenManager::__construct(): Implicitly marking parameter $namespace as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\Messenger\Transport\Serialization\Normalizer\FlattenExceptionNormalizer::normalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Messenger\Transport\Serialization\Normalizer\FlattenExceptionNormalizer::supportsNormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Messenger\Transport\Serialization\Normalizer\FlattenExceptionNormalizer::denormalize(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Messenger\Transport\Serialization\Normalizer\FlattenExceptionNormalizer::supportsDenormalization(): Implicitly marking parameter $format as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Twig\Template::displayBlock(): Implicitly marking parameter $templateContext as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Twig\Environment::getTemplateClass(): Implicitly marking parameter $index as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Twig\Environment::loadTemplate(): Implicitly marking parameter $index as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Twig\Environment::createTemplate(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension::renderWebpackScriptTags(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Twig\EntryFilesTwigExtension::renderWebpackLinkTags(): Implicitly marking parameter $packageName as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | deprecation |
Deprecated: Liip\ImagineBundle\Templating\FilterTrait::filterCache(): Implicitly marking parameter $resolver as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead. {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead. {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Bundle\SecurityBundle\Security::login(): Implicitly marking parameter $authenticatorName as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Bundle\SecurityBundle\Security::login(): Implicitly marking parameter $firewallName as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\DoctrineParamConverter::__construct(): Implicitly marking parameter $registry as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\DoctrineParamConverter::__construct(): Implicitly marking parameter $expressionLanguage as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::__construct(): Implicitly marking parameter $twig as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $language as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $trustResolver as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $roleHierarchy as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $tokenStorage as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $authChecker as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::__construct(): Implicitly marking parameter $logger as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::__construct(): Implicitly marking parameter $authChecker as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookupCollectionInterface::getEntrypointLookup(): Implicitly marking parameter $buildName as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookupCollection::__construct(): Implicitly marking parameter $defaultBuildName as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\WebpackEncoreBundle\Asset\EntrypointLookupCollection::getEntrypointLookup(): Implicitly marking parameter $buildName as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Vich\UploaderBundle\Metadata\Driver\XmlDriver::guessClassName(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Vich\UploaderBundle\Metadata\Driver\AbstractYamlDriver::guessClassName(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Liip\ImagineBundle\Imagine\Cache\SignerInterface::sign(): Implicitly marking parameter $runtimeConfig as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Liip\ImagineBundle\Imagine\Cache\SignerInterface::check(): Implicitly marking parameter $runtimeConfig as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Liip\ImagineBundle\Imagine\Cache\Signer::sign(): Implicitly marking parameter $runtimeConfig as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Liip\ImagineBundle\Imagine\Cache\Signer::check(): Implicitly marking parameter $runtimeConfig as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpClient\TraceableHttpClient::__construct(): Implicitly marking parameter $stopwatch as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpClient\TraceableHttpClient::stream(): Implicitly marking parameter $timeout as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpClient\DecoratorTrait::__construct(): Implicitly marking parameter $client as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpClient\DecoratorTrait::stream(): Implicitly marking parameter $timeout as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpClient\UriTemplateHttpClient::__construct(): Implicitly marking parameter $client as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\HttpClient\HttpClientTrait::jsonEncode(): Implicitly marking parameter $flags as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpClient\DataCollector\HttpClientDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\Messenger\DataCollector\MessengerDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Messenger\DataCollector\MessengerDataCollector::getExceptionsCount(): Implicitly marking parameter $bus as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Messenger\DataCollector\MessengerDataCollector::getMessages(): Implicitly marking parameter $bus as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\Notifier\DataCollector\NotificationDataCollector::collect(): Implicitly marking parameter $exception as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::join(): Implicitly marking parameter $lastGlue as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::slice(): Implicitly marking parameter $length as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::splice(): Implicitly marking parameter $length as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::split(): Implicitly marking parameter $limit as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\UnicodeString::split(): Implicitly marking parameter $flags as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\AbstractUnicodeString::join(): Implicitly marking parameter $lastGlue as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::join(): Implicitly marking parameter $lastGlue as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::slice(): Implicitly marking parameter $length as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::splice(): Implicitly marking parameter $length as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::split(): Implicitly marking parameter $limit as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::split(): Implicitly marking parameter $flags as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\String\AbstractString::toByteString(): Implicitly marking parameter $toEncoding as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "d009ac"
},
"request_uri": "https://www.bts-sio-2024-2026.eliotis.com/_profiler/d009ac?panel=exception",
"method": "GET"
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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": {}
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.request" to listener "App\EventListener\ActivityListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\ActivityListener::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController::__construct(): Implicitly marking parameter $profiler as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController::__construct(): Implicitly marking parameter $cspHandler as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController::__construct(): Implicitly marking parameter $baseDir as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Bundle\WebProfilerBundle\Controller\ProfilerController::toolbarAction(): Implicitly marking parameter $token as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpClient\CurlHttpClient::stream(): Implicitly marking parameter $timeout as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\Notifier\Event\NotificationEvents::getEvents(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\Notifier\Event\NotificationEvents::getMessages(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter::__construct(): Implicitly marking parameter $class as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter::__construct(): Implicitly marking parameter $converter as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 10:56:24 | 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:56:24 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| INFO 10:56:24 | 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": {}
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.controller_arguments" to listener "ContainerDoO6EiF\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerDoO6EiF\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | deprecation |
Deprecated: Symfony\Component\HttpFoundation\ResponseHeaderBag::clearCookie(): Implicitly marking parameter $sameSite as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Bridge\Twig\Extension\HttpKernelRuntime::__construct(): Implicitly marking parameter $fragmentUriGenerator as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\FragmentUriGeneratorInterface::generate(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\FragmentUriGenerator::__construct(): Implicitly marking parameter $signer as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\FragmentUriGenerator::__construct(): Implicitly marking parameter $requestStack as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\FragmentUriGenerator::generate(): Implicitly marking parameter $request as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer::__construct(): Implicitly marking parameter $dispatcher as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.request" to listener "App\EventListener\ActivityListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\ActivityListener::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| INFO 10:56:24 | deprecation |
Deprecated: Symfony\Bundle\WebProfilerBundle\Controller\ExceptionPanelController::__construct(): Implicitly marking parameter $profiler as nullable is deprecated, the explicit nullable type must be used instead {
"exception": {}
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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": {}
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 10:56:24 | 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:56:24 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.controller_arguments" to listener "ContainerDoO6EiF\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerDoO6EiF\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| INFO 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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": {}
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 10:56:24 | 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:56:24 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". {
"event": "kernel.finish_request",
"listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
|
| DEBUG 10:56:24 | 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"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.request" to listener "App\EventListener\ActivityListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\ActivityListener::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 10:56:24 | 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:56:24 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.controller_arguments" to listener "ContainerDoO6EiF\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerDoO6EiF\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 10:56:24 | 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:56:24 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". {
"event": "kernel.finish_request",
"listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
|
| DEBUG 10:56:24 | 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"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.request" to listener "App\EventListener\ActivityListener::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\EventListener\\ActivityListener::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.request" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelRequest". {
"event": "kernel.request",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelRequest"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "EasyCorp\Bundle\EasyAdminBundle\EventListener\AdminRouterSubscriber::onKernelController". {
"event": "kernel.controller",
"listener": "EasyCorp\\Bundle\\EasyAdminBundle\\EventListener\\AdminRouterSubscriber::onKernelController"
}
|
| DEBUG 10:56:24 | 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:56:24 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 10:56:24 | 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:56:24 | 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:56:24 | event |
Notified event "kernel.controller_arguments" to listener "ContainerDoO6EiF\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "ContainerDoO6EiF\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
|
| DEBUG 10:56:24 | event |
Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
|
Stack Traces 2
|
[2/2]
NotFoundHttpException
|
|---|
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://www.bts-sio-2024-2026.eliotis.com/robots.txt"
at vendor/symfony/http-kernel/EventListener/RouterListener.php:127
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:220)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:157)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:197)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/home/eliotisc/bts-sio-2024-2026.eliotis.com/vendor/autoload_runtime.php')
(public/index.php:5)
|
|
[1/2]
ResourceNotFoundException
|
|---|
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/robots.txt/".
at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:74
at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/robots.txt/')
(vendor/symfony/routing/Matcher/UrlMatcher.php:97)
at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
(vendor/symfony/routing/Router.php:237)
at Symfony\Component\Routing\Router->matchRequest(object(Request))
(vendor/symfony/http-kernel/EventListener/RouterListener.php:105)
at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
(vendor/symfony/event-dispatcher/EventDispatcher.php:220)
at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
(vendor/symfony/event-dispatcher/EventDispatcher.php:56)
at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
(vendor/symfony/http-kernel/HttpKernel.php:157)
at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
(vendor/symfony/http-kernel/HttpKernel.php:76)
at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
(vendor/symfony/http-kernel/Kernel.php:197)
at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
(vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
(vendor/autoload_runtime.php:29)
at require_once('/home/eliotisc/bts-sio-2024-2026.eliotis.com/vendor/autoload_runtime.php')
(public/index.php:5)
|