Error 500 Internal Server Error

GET https://www.ki-api.test.sparkundsparkling.com/public/_profiler/cf4fa1?panel=translation&type=request

Exceptions

The autoloader expected class "App\Controller\Tools\N8NVideoController" to be defined in file "/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/vendor/composer/../../src/Controller/Tools/N8NVideoController.php". The file was found but the class was not in it, the class name or namespace probably has a typo in {"path":"..\/src\/Controller\/","namespace":"App\\Controller"} (which is being imported from "/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/config/routes.yaml"). Make sure there is a loader supporting the "attribute" type.

Exceptions 2

Symfony\Component\Config\Exception\ LoaderLoadException

  1.                 // prevent embedded imports from nesting multiple exceptions
  2.                 if ($e instanceof LoaderLoadException) {
  3.                     throw $e;
  4.                 }
  5.                 throw new LoaderLoadException($resource$sourceResource0$e$type);
  6.             }
  7.         }
  8.         return null;
  9.     }
  1.             if ($isSubpath) {
  2.                 return isset($ret[1]) ? $ret : ($ret[0] ?? null);
  3.             }
  4.         }
  5.         return $this->doImport($resource$type$ignoreErrors$sourceResource);
  6.     }
  7.     /**
  8.      * @internal
  9.      */
  1.         }
  2.         $this->setCurrentDir(\dirname($path));
  3.         /** @var RouteCollection[] $imported */
  4.         $imported $this->import($config['resource'], $typefalse$file$exclude) ?: [];
  5.         if (!\is_array($imported)) {
  6.             $imported = [$imported];
  7.         }
  1.             }
  2.             $this->validate($config$name$path);
  3.             if (isset($config['resource'])) {
  4.                 $this->parseImport($collection$config$path$file);
  5.             } else {
  6.                 $this->parseRoute($collection$name$config$path);
  7.             }
  8.         }
  1.                 }
  2.             }
  3.             self::$loading[$resource] = true;
  4.             try {
  5.                 $ret $loader->load($resource$type);
  6.             } finally {
  7.                 unset(self::$loading[$resource]);
  8.             }
  9.             return $ret;
  1.             }
  2.             $ret = [];
  3.             $isSubpath !== $i && str_contains(substr($resource0$i), '/');
  4.             foreach ($this->glob($resourcefalse$_$ignoreErrors || !$isSubpathfalse$excluded) as $path => $info) {
  5.                 if (null !== $res $this->doImport($path'glob' === $type null $type$ignoreErrors$sourceResource)) {
  6.                     $ret[] = $res;
  7.                 }
  8.                 $isSubpath true;
  9.             }
  1.      */
  2.     final public function import(string|array $resource, ?string $type nullbool $ignoreErrors falsestring|array|null $exclude null): ImportConfigurator
  3.     {
  4.         $this->loader->setCurrentDir(\dirname($this->path));
  5.         $imported $this->loader->import($resource$type$ignoreErrors$this->file$exclude) ?: [];
  6.         if (!\is_array($imported)) {
  7.             return new ImportConfigurator($this->collection$imported);
  8.         }
  9.         $mergedCollection = new RouteCollection();
  1.         $routes->import($configDir.'/{routes}/'.$this->environment.'/*.{php,yaml}');
  2.         $routes->import($configDir.'/{routes}/*.{php,yaml}');
  3.         if (is_file($this->getConfigDir().'/routes.yaml')) {
  4.             $routes->import($configDir.'/routes.yaml');
  5.         } else {
  6.             $routes->import($configDir.'/{routes}.php');
  7.         }
  8.         if ($fileName = (new \ReflectionObject($this))->getFileName()) {
  1.         $kernelLoader $loader->getResolver()->resolve($file'php');
  2.         $kernelLoader->setCurrentDir(\dirname($file));
  3.         $collection = new RouteCollection();
  4.         $configureRoutes = new \ReflectionMethod($this'configureRoutes');
  5.         $configureRoutes->getClosure($this)(new RoutingConfigurator($collection$kernelLoader$file$file$this->getEnvironment()));
  6.         foreach ($collection as $route) {
  7.             $controller $route->getDefault('_controller');
  8.             if (\is_array($controller) && [01] === array_keys($controller) && $this === $controller[0]) {
  1.         if (!\is_callable([$loaderObject$method])) {
  2.             throw new \BadMethodCallException(\sprintf('Method "%s" not found on "%s" when importing routing resource "%s".'$methodget_debug_type($loaderObject), $resource));
  3.         }
  4.         $routeCollection $loaderObject->$method($this$this->env);
  5.         if (!$routeCollection instanceof RouteCollection) {
  6.             $type get_debug_type($routeCollection);
  7.             throw new \LogicException(\sprintf('The "%s::%s()" method must return a RouteCollection: "%s" returned.'get_debug_type($loaderObject), $method$type));
  1.     {
  2.         if (false === $loader $this->resolver->resolve($resource$type)) {
  3.             throw new LoaderLoadException($resourcenull0null$type);
  4.         }
  5.         return $loader->load($resource$type);
  6.     }
  7.     public function supports(mixed $resource, ?string $type null): bool
  8.     {
  9.         return false !== $this->resolver->resolve($resource$type);
  1.             throw new LoaderLoadException($resourcenull0null$type);
  2.         }
  3.         $this->loading true;
  4.         try {
  5.             $collection parent::load($resource$type);
  6.         } finally {
  7.             $this->loading false;
  8.         }
  9.         foreach ($collection->all() as $route) {
  1.     }
  2.     public function getRouteCollection(): RouteCollection
  3.     {
  4.         if (!isset($this->collection)) {
  5.             $this->collection $this->container->get('routing.loader')->load($this->resource$this->options['resource_type']);
  6.             $this->resolveParameters($this->collection);
  7.             $this->collection->addResource(new ContainerParametersResource($this->collectedParameters));
  8.             try {
  9.                 $containerFile = ($this->paramFetcher)('kernel.build_dir').'/'.($this->paramFetcher)('kernel.container_class').'.php';
in vendor/symfony/routing/Router.php -> getRouteCollection (line 282)
  1.         return new $this->options['generator_dumper_class']($this->getRouteCollection());
  2.     }
  3.     protected function getMatcherDumperInstance(): MatcherDumperInterface
  4.     {
  5.         return new $this->options['matcher_dumper_class']($this->getRouteCollection());
  6.     }
  7.     /**
  8.      * Provides the ConfigCache factory implementation, falling back to a
  9.      * default implementation if necessary.
in vendor/symfony/routing/Router.php -> getMatcherDumperInstance (line 218)
  1.             return $this->matcher;
  2.         }
  3.         $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/url_matching_routes.php',
  4.             function (ConfigCacheInterface $cache) {
  5.                 $dumper $this->getMatcherDumperInstance();
  6.                 if (method_exists($dumper'addExpressionLanguageProvider')) {
  7.                     foreach ($this->expressionLanguageProviders as $provider) {
  8.                         $dumper->addExpressionLanguageProvider($provider);
  9.                     }
  10.                 }
in vendor/symfony/config/ResourceCheckerConfigCacheFactory.php -> Symfony\Component\Routing\{closure} (line 34)
  1.     public function cache(string $file, callable $callable): ConfigCacheInterface
  2.     {
  3.         $cache = new ResourceCheckerConfigCache($file$this->resourceCheckers);
  4.         if (!$cache->isFresh()) {
  5.             $callable($cache);
  6.         }
  7.         return $cache;
  8.     }
  9. }
  1.             }
  2.             return $this->matcher;
  3.         }
  4.         $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/url_matching_routes.php',
  5.             function (ConfigCacheInterface $cache) {
  6.                 $dumper $this->getMatcherDumperInstance();
  7.                 if (method_exists($dumper'addExpressionLanguageProvider')) {
  8.                     foreach ($this->expressionLanguageProviders as $provider) {
  9.                         $dumper->addExpressionLanguageProvider($provider);
in vendor/symfony/routing/Router.php -> getMatcher (line 182)
  1.         return $this->getMatcher()->match($pathinfo);
  2.     }
  3.     public function matchRequest(Request $request): array
  4.     {
  5.         $matcher $this->getMatcher();
  6.         if (!$matcher instanceof RequestMatcherInterface) {
  7.             // fallback to the default UrlMatcherInterface
  8.             return $matcher->match($request->getPathInfo());
  9.         }
  1.         // add attributes based on the request (routing)
  2.         try {
  3.             // matching a request is more powerful than matching a URL path + context, so try that first
  4.             if ($this->matcher instanceof RequestMatcherInterface) {
  5.                 $parameters $this->matcher->matchRequest($request);
  6.             } else {
  7.                 $parameters $this->matcher->match($request->getPathInfo());
  8.             }
  9.             $this->logger?->info('Matched route "{route}".', [
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/vendor/autoload_runtime.php') in public/index.php (line 113)
  1.     header('Location: /');
  2.     exit;
  3. }
  4. require_once $vendorDir '/autoload_runtime.php';
  5. return function (array $context) use ($envLocal) {
  6.     return new Kernel($context['APP_ENV'], (bool)$context['APP_DEBUG']);
  7. };

RuntimeException

The autoloader expected class "App\Controller\Tools\N8NVideoController" to be defined in file "/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/vendor/composer/../../src/Controller/Tools/N8NVideoController.php". The file was found but the class was not in it, the class name or namespace probably has a typo.

  1.         if (!$exists) {
  2.             if (str_contains($class'/')) {
  3.                 throw new \RuntimeException(\sprintf('Trying to autoload a class with an invalid name "%s". Be careful that the namespace separator is "\" in PHP, not "/".'$class));
  4.             }
  5.             throw new \RuntimeException(\sprintf('The autoloader expected class "%s" to be defined in file "%s". The file was found but the class was not in it, the class name or namespace probably has a typo.'$class$file));
  6.         }
  7.         if (self::$caseCheck && $message $this->checkCase($refl$file$class)) {
  8.             throw new \RuntimeException(\sprintf('Case mismatch between class and real file names: "%s" vs "%s" in "%s".'$message[0], $message[1], $message[2]));
  9.         }
  1.             }
  2.         } finally {
  3.             error_reporting($e);
  4.         }
  5.         $this->checkClass($class$file);
  6.     }
  7.     private function checkClass(string $class, ?string $file null): void
  8.     {
  9.         $exists null === $file || class_exists($classfalse) || interface_exists($classfalse) || trait_exists($classfalse);
DebugClassLoader->loadClass()
  1.             if ($file->isDir()) {
  2.                 $collection->addCollection($this->loadFromDirectory($file->getPathname(), $psr4Prefix.'\\'.$file->getFilename()));
  3.                 continue;
  4.             }
  5.             if ('php' !== $file->getExtension() || !class_exists($className $psr4Prefix.'\\'.$file->getBasename('.php')) || (new \ReflectionClass($className))->isAbstract()) {
  6.                 continue;
  7.             }
  8.             $collection->addCollection($this->import($className'attribute'));
  9.         }
  1.         usort($files, fn (\SplFileInfo $a\SplFileInfo $b) => (string) $a > (string) $b : -1);
  2.         /** @var \SplFileInfo $file */
  3.         foreach ($files as $file) {
  4.             if ($file->isDir()) {
  5.                 $collection->addCollection($this->loadFromDirectory($file->getPathname(), $psr4Prefix.'\\'.$file->getFilename()));
  6.                 continue;
  7.             }
  8.             if ('php' !== $file->getExtension() || !class_exists($className $psr4Prefix.'\\'.$file->getBasename('.php')) || (new \ReflectionClass($className))->isAbstract()) {
  9.                 continue;
  1.         $path $this->locator->locate($resource['path'], $this->currentDirectory);
  2.         if (!is_dir($path)) {
  3.             return new RouteCollection();
  4.         }
  5.         return $this->loadFromDirectory($pathtrim($resource['namespace'], '\\'));
  6.     }
  7.     public function supports(mixed $resource, ?string $type null): bool
  8.     {
  9.         return 'attribute' === $type && \is_array($resource) && isset($resource['path'], $resource['namespace']);
  1.             if ($loader instanceof DirectoryAwareLoaderInterface) {
  2.                 $loader $loader->forDirectory($this->currentDir);
  3.             }
  4.             if (!$loader instanceof self) {
  5.                 return $loader->load($resource$type);
  6.             }
  7.             if (null !== $this->currentDir) {
  8.                 $resource $loader->getLocator()->locate($resource$this->currentDirfalse);
  9.             }
  1.             if ($isSubpath) {
  2.                 return isset($ret[1]) ? $ret : ($ret[0] ?? null);
  3.             }
  4.         }
  5.         return $this->doImport($resource$type$ignoreErrors$sourceResource);
  6.     }
  7.     /**
  8.      * @internal
  9.      */
  1.         }
  2.         $this->setCurrentDir(\dirname($path));
  3.         /** @var RouteCollection[] $imported */
  4.         $imported $this->import($config['resource'], $typefalse$file$exclude) ?: [];
  5.         if (!\is_array($imported)) {
  6.             $imported = [$imported];
  7.         }
  1.             }
  2.             $this->validate($config$name$path);
  3.             if (isset($config['resource'])) {
  4.                 $this->parseImport($collection$config$path$file);
  5.             } else {
  6.                 $this->parseRoute($collection$name$config$path);
  7.             }
  8.         }
  1.                 }
  2.             }
  3.             self::$loading[$resource] = true;
  4.             try {
  5.                 $ret $loader->load($resource$type);
  6.             } finally {
  7.                 unset(self::$loading[$resource]);
  8.             }
  9.             return $ret;
  1.             }
  2.             $ret = [];
  3.             $isSubpath !== $i && str_contains(substr($resource0$i), '/');
  4.             foreach ($this->glob($resourcefalse$_$ignoreErrors || !$isSubpathfalse$excluded) as $path => $info) {
  5.                 if (null !== $res $this->doImport($path'glob' === $type null $type$ignoreErrors$sourceResource)) {
  6.                     $ret[] = $res;
  7.                 }
  8.                 $isSubpath true;
  9.             }
  1.      */
  2.     final public function import(string|array $resource, ?string $type nullbool $ignoreErrors falsestring|array|null $exclude null): ImportConfigurator
  3.     {
  4.         $this->loader->setCurrentDir(\dirname($this->path));
  5.         $imported $this->loader->import($resource$type$ignoreErrors$this->file$exclude) ?: [];
  6.         if (!\is_array($imported)) {
  7.             return new ImportConfigurator($this->collection$imported);
  8.         }
  9.         $mergedCollection = new RouteCollection();
  1.         $routes->import($configDir.'/{routes}/'.$this->environment.'/*.{php,yaml}');
  2.         $routes->import($configDir.'/{routes}/*.{php,yaml}');
  3.         if (is_file($this->getConfigDir().'/routes.yaml')) {
  4.             $routes->import($configDir.'/routes.yaml');
  5.         } else {
  6.             $routes->import($configDir.'/{routes}.php');
  7.         }
  8.         if ($fileName = (new \ReflectionObject($this))->getFileName()) {
  1.         $kernelLoader $loader->getResolver()->resolve($file'php');
  2.         $kernelLoader->setCurrentDir(\dirname($file));
  3.         $collection = new RouteCollection();
  4.         $configureRoutes = new \ReflectionMethod($this'configureRoutes');
  5.         $configureRoutes->getClosure($this)(new RoutingConfigurator($collection$kernelLoader$file$file$this->getEnvironment()));
  6.         foreach ($collection as $route) {
  7.             $controller $route->getDefault('_controller');
  8.             if (\is_array($controller) && [01] === array_keys($controller) && $this === $controller[0]) {
  1.         if (!\is_callable([$loaderObject$method])) {
  2.             throw new \BadMethodCallException(\sprintf('Method "%s" not found on "%s" when importing routing resource "%s".'$methodget_debug_type($loaderObject), $resource));
  3.         }
  4.         $routeCollection $loaderObject->$method($this$this->env);
  5.         if (!$routeCollection instanceof RouteCollection) {
  6.             $type get_debug_type($routeCollection);
  7.             throw new \LogicException(\sprintf('The "%s::%s()" method must return a RouteCollection: "%s" returned.'get_debug_type($loaderObject), $method$type));
  1.     {
  2.         if (false === $loader $this->resolver->resolve($resource$type)) {
  3.             throw new LoaderLoadException($resourcenull0null$type);
  4.         }
  5.         return $loader->load($resource$type);
  6.     }
  7.     public function supports(mixed $resource, ?string $type null): bool
  8.     {
  9.         return false !== $this->resolver->resolve($resource$type);
  1.             throw new LoaderLoadException($resourcenull0null$type);
  2.         }
  3.         $this->loading true;
  4.         try {
  5.             $collection parent::load($resource$type);
  6.         } finally {
  7.             $this->loading false;
  8.         }
  9.         foreach ($collection->all() as $route) {
  1.     }
  2.     public function getRouteCollection(): RouteCollection
  3.     {
  4.         if (!isset($this->collection)) {
  5.             $this->collection $this->container->get('routing.loader')->load($this->resource$this->options['resource_type']);
  6.             $this->resolveParameters($this->collection);
  7.             $this->collection->addResource(new ContainerParametersResource($this->collectedParameters));
  8.             try {
  9.                 $containerFile = ($this->paramFetcher)('kernel.build_dir').'/'.($this->paramFetcher)('kernel.container_class').'.php';
in vendor/symfony/routing/Router.php -> getRouteCollection (line 282)
  1.         return new $this->options['generator_dumper_class']($this->getRouteCollection());
  2.     }
  3.     protected function getMatcherDumperInstance(): MatcherDumperInterface
  4.     {
  5.         return new $this->options['matcher_dumper_class']($this->getRouteCollection());
  6.     }
  7.     /**
  8.      * Provides the ConfigCache factory implementation, falling back to a
  9.      * default implementation if necessary.
in vendor/symfony/routing/Router.php -> getMatcherDumperInstance (line 218)
  1.             return $this->matcher;
  2.         }
  3.         $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/url_matching_routes.php',
  4.             function (ConfigCacheInterface $cache) {
  5.                 $dumper $this->getMatcherDumperInstance();
  6.                 if (method_exists($dumper'addExpressionLanguageProvider')) {
  7.                     foreach ($this->expressionLanguageProviders as $provider) {
  8.                         $dumper->addExpressionLanguageProvider($provider);
  9.                     }
  10.                 }
in vendor/symfony/config/ResourceCheckerConfigCacheFactory.php -> Symfony\Component\Routing\{closure} (line 34)
  1.     public function cache(string $file, callable $callable): ConfigCacheInterface
  2.     {
  3.         $cache = new ResourceCheckerConfigCache($file$this->resourceCheckers);
  4.         if (!$cache->isFresh()) {
  5.             $callable($cache);
  6.         }
  7.         return $cache;
  8.     }
  9. }
  1.             }
  2.             return $this->matcher;
  3.         }
  4.         $cache $this->getConfigCacheFactory()->cache($this->options['cache_dir'].'/url_matching_routes.php',
  5.             function (ConfigCacheInterface $cache) {
  6.                 $dumper $this->getMatcherDumperInstance();
  7.                 if (method_exists($dumper'addExpressionLanguageProvider')) {
  8.                     foreach ($this->expressionLanguageProviders as $provider) {
  9.                         $dumper->addExpressionLanguageProvider($provider);
in vendor/symfony/routing/Router.php -> getMatcher (line 182)
  1.         return $this->getMatcher()->match($pathinfo);
  2.     }
  3.     public function matchRequest(Request $request): array
  4.     {
  5.         $matcher $this->getMatcher();
  6.         if (!$matcher instanceof RequestMatcherInterface) {
  7.             // fallback to the default UrlMatcherInterface
  8.             return $matcher->match($request->getPathInfo());
  9.         }
  1.         // add attributes based on the request (routing)
  2.         try {
  3.             // matching a request is more powerful than matching a URL path + context, so try that first
  4.             if ($this->matcher instanceof RequestMatcherInterface) {
  5.                 $parameters $this->matcher->matchRequest($request);
  6.             } else {
  7.                 $parameters $this->matcher->match($request->getPathInfo());
  8.             }
  9.             $this->logger?->info('Matched route "{route}".', [
  1.         $this->priority ??= $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/vendor/autoload_runtime.php') in public/index.php (line 113)
  1.     header('Location: /');
  2.     exit;
  3. }
  4. require_once $vendorDir '/autoload_runtime.php';
  5. return function (array $context) use ($envLocal) {
  6.     return new Kernel($context['APP_ENV'], (bool)$context['APP_DEBUG']);
  7. };

Logs

Level Channel Message
INFO 23:55:29 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "9e9393"
    },
    "request_uri": "https://www.ki-api.test.sparkundsparkling.com/_profiler/9e9393",
    "method": "GET"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\EventListener\DisableProfilerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\DisableProfilerListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\Request\Listener\RequestIdSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Request\\Listener\\RequestIdSubscriber::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 23:55:29 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 23:55:29 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 23:55:29 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 23:55:29 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 23:55:29 event Notified event "kernel.controller_arguments" to listener "ContainerGoMqrIb\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerGoMqrIb\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 23:55:29 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\EventListener\DisableProfilerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\DisableProfilerListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\Request\Listener\RequestIdSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Request\\Listener\\RequestIdSubscriber::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 23:55:29 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 23:55:29 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 23:55:29 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 23:55:29 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 23:55:29 event Notified event "kernel.controller_arguments" to listener "ContainerGoMqrIb\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerGoMqrIb\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 23:55:29 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\Security\Csrf\SameOriginCsrfTokenManager::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Csrf\\SameOriginCsrfTokenManager::onKernelResponse"
}
DEBUG 23:55:29 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 23:55:29 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "App\Request\Listener\RequestIdSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "App\\Request\\Listener\\RequestIdSubscriber::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 23:55:29 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 23:55:29 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 23:55:29 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 23:55:29 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 23:55:29 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 23:55:29 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 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\EventListener\DisableProfilerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\DisableProfilerListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Bridge\Doctrine\Middleware\IdleConnection\Listener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bridge\\Doctrine\\Middleware\\IdleConnection\\Listener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\AddFormatListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\AddFormatListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\ReadListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\ReadListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "ApiPlatform\Symfony\EventListener\DeserializeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "ApiPlatform\\Symfony\\EventListener\\DeserializeListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "App\Request\Listener\RequestIdSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Request\\Listener\\RequestIdSubscriber::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 23:55:29 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 23:55:29 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 23:55:29 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsCsrfTokenValidAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsCsrfTokenValidAttributeListener::onKernelControllerArguments"
}
DEBUG 23:55:29 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 23:55:29 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 23:55:29 event Notified event "kernel.controller_arguments" to listener "ContainerGoMqrIb\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerGoMqrIb\\RequestPayloadValueResolverGhost01ca9cc::onKernelControllerArguments"
}
DEBUG 23:55:29 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 2

[2/2] LoaderLoadException
Symfony\Component\Config\Exception\LoaderLoadException:
The autoloader expected class "App\Controller\Tools\N8NVideoController" to be defined in file "/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/vendor/composer/../../src/Controller/Tools/N8NVideoController.php". The file was found but the class was not in it, the class name or namespace probably has a typo in {"path":"..\/src\/Controller\/","namespace":"App\\Controller"} (which is being imported from "/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/config/routes.yaml"). Make sure there is a loader supporting the "attribute" type.

  at vendor/symfony/config/Loader/FileLoader.php:177
  at Symfony\Component\Config\Loader\FileLoader->doImport()
     (vendor/symfony/config/Loader/FileLoader.php:93)
  at Symfony\Component\Config\Loader\FileLoader->import()
     (vendor/symfony/routing/Loader/YamlFileLoader.php:210)
  at Symfony\Component\Routing\Loader\YamlFileLoader->parseImport()
     (vendor/symfony/routing/Loader/YamlFileLoader.php:99)
  at Symfony\Component\Routing\Loader\YamlFileLoader->load()
     (vendor/symfony/config/Loader/FileLoader.php:162)
  at Symfony\Component\Config\Loader\FileLoader->doImport()
     (vendor/symfony/config/Loader/FileLoader.php:82)
  at Symfony\Component\Config\Loader\FileLoader->import()
     (vendor/symfony/routing/Loader/Configurator/RoutingConfigurator.php:41)
  at Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator->import()
     (vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:83)
  at App\Kernel->configureRoutes()
     (vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:217)
  at App\Kernel->loadRoutes()
     (vendor/symfony/routing/Loader/ObjectLoader.php:51)
  at Symfony\Component\Routing\Loader\ObjectLoader->load()
     (vendor/symfony/config/Loader/DelegatingLoader.php:37)
  at Symfony\Component\Config\Loader\DelegatingLoader->load()
     (vendor/symfony/framework-bundle/Routing/DelegatingLoader.php:65)
  at Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader->load()
     (vendor/symfony/framework-bundle/Routing/Router.php:72)
  at Symfony\Bundle\FrameworkBundle\Routing\Router->getRouteCollection()
     (vendor/symfony/routing/Router.php:282)
  at Symfony\Component\Routing\Router->getMatcherDumperInstance()
     (vendor/symfony/routing/Router.php:218)
  at Symfony\Component\Routing\Router->Symfony\Component\Routing\{closure}()
     (vendor/symfony/config/ResourceCheckerConfigCacheFactory.php:34)
  at Symfony\Component\Config\ResourceCheckerConfigCacheFactory->cache()
     (vendor/symfony/routing/Router.php:216)
  at Symfony\Component\Routing\Router->getMatcher()
     (vendor/symfony/routing/Router.php:182)
  at Symfony\Component\Routing\Router->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/vendor/autoload_runtime.php')
     (public/index.php:113)                
[1/2] RuntimeException
RuntimeException:
The autoloader expected class "App\Controller\Tools\N8NVideoController" to be defined in file "/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/vendor/composer/../../src/Controller/Tools/N8NVideoController.php". The file was found but the class was not in it, the class name or namespace probably has a typo.

  at vendor/symfony/error-handler/DebugClassLoader.php:358
  at Symfony\Component\ErrorHandler\DebugClassLoader->checkClass()
     (vendor/symfony/error-handler/DebugClassLoader.php:315)
  at Symfony\Component\ErrorHandler\DebugClassLoader->loadClass()
  at class_exists()
     (vendor/symfony/routing/Loader/Psr4DirectoryLoader.php:82)
  at Symfony\Component\Routing\Loader\Psr4DirectoryLoader->loadFromDirectory()
     (vendor/symfony/routing/Loader/Psr4DirectoryLoader.php:78)
  at Symfony\Component\Routing\Loader\Psr4DirectoryLoader->loadFromDirectory()
     (vendor/symfony/routing/Loader/Psr4DirectoryLoader.php:46)
  at Symfony\Component\Routing\Loader\Psr4DirectoryLoader->load()
     (vendor/symfony/config/Loader/FileLoader.php:141)
  at Symfony\Component\Config\Loader\FileLoader->doImport()
     (vendor/symfony/config/Loader/FileLoader.php:93)
  at Symfony\Component\Config\Loader\FileLoader->import()
     (vendor/symfony/routing/Loader/YamlFileLoader.php:210)
  at Symfony\Component\Routing\Loader\YamlFileLoader->parseImport()
     (vendor/symfony/routing/Loader/YamlFileLoader.php:99)
  at Symfony\Component\Routing\Loader\YamlFileLoader->load()
     (vendor/symfony/config/Loader/FileLoader.php:162)
  at Symfony\Component\Config\Loader\FileLoader->doImport()
     (vendor/symfony/config/Loader/FileLoader.php:82)
  at Symfony\Component\Config\Loader\FileLoader->import()
     (vendor/symfony/routing/Loader/Configurator/RoutingConfigurator.php:41)
  at Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator->import()
     (vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:83)
  at App\Kernel->configureRoutes()
     (vendor/symfony/framework-bundle/Kernel/MicroKernelTrait.php:217)
  at App\Kernel->loadRoutes()
     (vendor/symfony/routing/Loader/ObjectLoader.php:51)
  at Symfony\Component\Routing\Loader\ObjectLoader->load()
     (vendor/symfony/config/Loader/DelegatingLoader.php:37)
  at Symfony\Component\Config\Loader\DelegatingLoader->load()
     (vendor/symfony/framework-bundle/Routing/DelegatingLoader.php:65)
  at Symfony\Bundle\FrameworkBundle\Routing\DelegatingLoader->load()
     (vendor/symfony/framework-bundle/Routing/Router.php:72)
  at Symfony\Bundle\FrameworkBundle\Routing\Router->getRouteCollection()
     (vendor/symfony/routing/Router.php:282)
  at Symfony\Component\Routing\Router->getMatcherDumperInstance()
     (vendor/symfony/routing/Router.php:218)
  at Symfony\Component\Routing\Router->Symfony\Component\Routing\{closure}()
     (vendor/symfony/config/ResourceCheckerConfigCacheFactory.php:34)
  at Symfony\Component\Config\ResourceCheckerConfigCacheFactory->cache()
     (vendor/symfony/routing/Router.php:216)
  at Symfony\Component\Routing\Router->getMatcher()
     (vendor/symfony/routing/Router.php:182)
  at Symfony\Component\Routing\Router->matchRequest()
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest()
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:115)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:122)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/vhosts/ki-api.test.sparkundsparkling.com/httpdocs/vendor/autoload_runtime.php')
     (public/index.php:113)