Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

If you need help solving this exception, you can have a look at the TYPO3 Documentation. There you can find solutions provided by the TYPO3 community. Once you have found a solution to the problem, help others by contributing to the documentation page.

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1476107295 TYPO3\CMS\Core\Error\Exception

PHP Warning: Undefined array key 0 in /html/typo3/typo3conf/ext/theme_immobilienresch/Classes/Routing/Aspect/ObjectsMapper.php line 65

in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Error/ErrorHandler.php line 138
        }

        $message = self::ERROR_LEVEL_LABELS[$errorLevel] . ': ' . $errorMessage . ' in ' . $errorFile . ' line ' . $errorLine;
        if ($errorLevel & $this->exceptionalErrors) {
            throw new Exception($message, 1476107295);
        }

        $message = $this->getFormattedLogMessage($message);

at TYPO3\CMS\Core\Error\ErrorHandler->handleError(2, 'Undefined array key 0', '/html/typo3/typo3conf/ext/theme_immobilienresch/Classes/Routing/Aspect/ObjectsMapper.php', 65)
in /html/typo3/typo3conf/ext/theme_immobilienresch/Classes/Routing/Aspect/ObjectsMapper.php line 65
             ->where(...$constraints)
             ->executeQuery()
             ->fetchAllAssociative();

        return (string) $results[0]['uid'];
    }
}
at Aktivweb\ThemeImmobilienresch\Routing\Aspect\ObjectsMapper->resolve('gut-eingefuehrte-pizzeria-im-zentrum-von-bodenmais-zu-verpachten')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/Aspect/MappableProcessor.php line 36
        }

        $values = [];
        foreach ($mappers as $variableName => $mapper) {
            $value = $mapper->resolve(
                (string)($attributes[$variableName] ?? '')
            );
            if ($value === null) {
                if (!$mapper instanceof UnresolvedValueInterface || !$mapper->hasFallbackValue()) {
at TYPO3\CMS\Core\Routing\Aspect\MappableProcessor->resolve(object(TYPO3\CMS\Core\Routing\Route), array('/objekt/gewerbe/gut-eingefuehrte-pizzeria-im-zentrum-von-bodenmais-zu-verpachten', 'ddb4bfc6ebc3756d8ff8b0cafd44330' => 'gewerbe', 'gewerbe', 'o83cb41e94d6667b8f83be505c2517a' => 'gut-eingefuehrte-pizzeria-im-zentrum-von-bodenmais-zu-verpachten', 'gut-eingefuehrte-pizzeria-im-zentrum-von-bodenmais-zu-verpachten'))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageUriMatcher.php line 93
                continue;
            }

            // custom handling of Mappable instances
            if (!$this->mappableProcessor->resolve($route, $matches)) {
                continue;
            }

            return $this->getAttributes($route, $name, $matches);
at TYPO3\CMS\Core\Routing\PageUriMatcher->matchCollection('/objekt/gewerbe/gut-eingefuehrte-pizzeria-im-zentrum-von-bodenmais-zu-verpachten', object(TYPO3\CMS\Core\Routing\RouteCollection))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageUriMatcher.php line 61
     * @throws ResourceNotFoundException
     */
    public function match(string $urlPath)
    {
        if ($ret = $this->matchCollection(rawurldecode($urlPath), $this->routes)) {
            return $ret;
        }
        throw new ResourceNotFoundException(
            sprintf('No routes found for "%s".', $urlPath),
at TYPO3\CMS\Core\Routing\PageUriMatcher->match('/objekt/gewerbe/gut-eingefuehrte-pizzeria-im-zentrum-von-bodenmais-zu-verpachten.html')
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Routing/PageRouter.php line 181
        }

        $matcher = new PageUriMatcher($fullCollection);
        try {
            $result = $matcher->match($prefixedUrlPath);
            /** @var Route $matchedRoute */
            $matchedRoute = $fullCollection->get($result['_route']);
            // Only use route if page language variant matches current language, otherwise handle it as route not found.
            if ($this->isRouteReallyValidForLanguage($matchedRoute, $language)) {
at TYPO3\CMS\Core\Routing\PageRouter->matchRequest(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Core\Routing\SiteRouteResult))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 71

        // Check for the route arguments or Query Parameter ID
        try {
            /** @var PageArguments $pageArguments */
            $pageArguments = $site->getRouter()->matchRequest($request, $previousResult);
            $request = $request->withAttribute('routing', $pageArguments);
        } catch (RouteNotFoundException $e) {
            return GeneralUtility::makeInstance(ErrorController::class)->pageNotFoundAction(
                $request,
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 63

                return new HtmlResponse($content, 200, ['Content-Type' => $contentType]);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/ContentSecurityPolicyReporter.php line 42
            // @todo create report, then call persist, then dispatch new event
            $this->persistCspReport($scope, $request);
            return new NullResponse();
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\ContentSecurityPolicyReporter->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 90
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 72
        if ($this->context->getAspect('frontend.user')->isLoggedIn() && $rateLimiter) {
            $rateLimiter->reset();
        }

        $response = $handler->handle($request);

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 79
                $request = $request->withAttribute('noCache', true);
            }
        }

        $response = $handler->handle($request);

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Middleware/RequestTokenMiddleware.php line 71
            $this->securityAspect->setReceivedRequestToken(false);
            $this->logger->debug('Could not resolve request token', ['exception' => $exception]);
        }

        $response = $handler->handle($request);
        return $this->enrichResponseWithCookie($request, $response);
    }

    protected function resolveNoncePool(ServerRequestInterface $request): NoncePool
at TYPO3\CMS\Core\Middleware\RequestTokenMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 51
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 53
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 48
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 41
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Middleware/VerifyHostHeader.php line 55
                1396795884
            );
        }

        return $handler->handle($request);
    }

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 46
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

        $response = $handler->handle($request);

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$cf->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 70
     * Invoke the middleware stack
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/AbstractApplication.php line 80

    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        try {
            $response = $this->requestHandler->handle($request);
        } catch (ImmediateResponseException $exception) {
            $response = $exception->getResponse();
        }
        return $response;
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/frontend/Classes/Http/Application.php line 59
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Create a PSR-7 Response that redirects to the install tool
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.13/typo3/sysext/core/Classes/Http/AbstractApplication.php line 92
     * Set up the application and shut it down afterwards
     */
    final public function run()
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        $this->sendResponse($response);
    }
}
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/typo3/typo3_src-12.4.13/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /html/typo3/typo3_src-12.4.13/index.php line 21
call_user_func(static function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});