Error 404 Not Found

GET https://resasfa.elementroot.tech/robots.txt

Exceptions

No route found for "GET https://resasfa.elementroot.tech/robots.txt"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#14830
  -statusCode: 404
  -headers: []
}
  1. if ($referer = $request->headers->get('referer')) {
  2. $message .= \sprintf(' (from "%s")', $referer);
  3. }
  4. throw new NotFoundHttpException($message, $e);
  5. } catch (MethodNotAllowedException $e) {
  6. $message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
  7. throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
  8. }
  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. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::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. $handler = function () use ($server, &$sfRequest, &$sfResponse): void {
  2. // Merge the environment variables coming from DotEnv with the ones tied to the current request
  3. $_SERVER += $server;
  4. $sfRequest = Request::createFromGlobals();
  5. $sfResponse = $this->kernel->handle($sfRequest);
  6. $sfResponse->send();
  7. };
  8. $loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in vendor/runtime/frankenphp-symfony/src/Runner.php frankenphp_handle_request (line 45)
  1. $sfResponse->send();
  2. };
  3. $loops = 0;
  4. do {
  5. $ret = \frankenphp_handle_request($handler);
  6. if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {
  7. $this->kernel->terminate($sfRequest, $sfResponse);
  8. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/robots.txt/".

  1. if ($allowSchemes) {
  2. goto redirect_scheme;
  3. }
  4. }
  5. throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));
  6. }
  7. private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8. {
  9. $allow = $allowSchemes = [];
  1. public function matchRequest(Request $request): array
  2. {
  3. $this->request = $request;
  4. $ret = $this->match($request->getPathInfo());
  5. $this->request = null;
  6. return $ret;
  7. }
in vendor/symfony/routing/Router.php -> matchRequest (line 188)
  1. if (!$matcher instanceof RequestMatcherInterface) {
  2. // fallback to the default UrlMatcherInterface
  3. return $matcher->match($request->getPathInfo());
  4. }
  5. return $matcher->matchRequest($request);
  6. }
  7. /**
  8. * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  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. 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. */
  2. private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
  3. {
  4. // request
  5. $event = new RequestEvent($this, $request, $type);
  6. $this->dispatcher->dispatch($event, KernelEvents::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. $handler = function () use ($server, &$sfRequest, &$sfResponse): void {
  2. // Merge the environment variables coming from DotEnv with the ones tied to the current request
  3. $_SERVER += $server;
  4. $sfRequest = Request::createFromGlobals();
  5. $sfResponse = $this->kernel->handle($sfRequest);
  6. $sfResponse->send();
  7. };
  8. $loops = 0;
Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
in vendor/runtime/frankenphp-symfony/src/Runner.php frankenphp_handle_request (line 45)
  1. $sfResponse->send();
  2. };
  3. $loops = 0;
  4. do {
  5. $ret = \frankenphp_handle_request($handler);
  6. if ($this->kernel instanceof TerminableInterface && $sfRequest && $sfResponse) {
  7. $this->kernel->terminate($sfRequest, $sfResponse);
  8. }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5. return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs 101

Level Message
error 22:28:26 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/vehicules"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:48:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/css/support_parent.css"" at RouterListener.php line 156
{
    "exception": {}
}
error 09:19:50 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 09:19:50 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.example"" at RouterListener.php line 156
{
    "exception": {}
}
error 09:19:50 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/backend/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 09:19:51 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpinfo"" at RouterListener.php line 156
{
    "exception": {}
}
error 09:19:51 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/info"" at RouterListener.php line 156
{
    "exception": {}
}
error 09:19:51 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test"" at RouterListener.php line 156
{
    "exception": {}
}
error 13:51:17 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 13:51:17 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.production"" at RouterListener.php line 156
{
    "exception": {}
}
error 13:51:17 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.backup"" at RouterListener.php line 156
{
    "exception": {}
}
error 13:51:18 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpinfo"" at RouterListener.php line 156
{
    "exception": {}
}
error 13:51:18 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test.php"" at RouterListener.php line 156
{
    "exception": {}
}
error 13:51:18 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/php.php"" at RouterListener.php line 156
{
    "exception": {}
}
error 13:51:18 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpversion.php"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:32:29 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/twint_ch.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:32:30 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/lkk_ch.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 15:55:10 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 15:55:10 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.example"" at RouterListener.php line 156
{
    "exception": {}
}
error 15:55:11 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/backend/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 15:55:11 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/phpinfo"" at RouterListener.php line 156
{
    "exception": {}
}
error 15:55:11 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/info"" at RouterListener.php line 156
{
    "exception": {}
}
error 15:55:11 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/test"" at RouterListener.php line 156
{
    "exception": {}
}
info 22:12:19 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 22:12:28 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/f31d9d%3Fpanel%3Drequest"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/%23trace-box-2"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/%23trace-box-1"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L101"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/data%3Aimage/png%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABwAAAAgCAYAAAABtRhCAAADVUlEQVRIx82XX0jTURTHLYPyqZdefQx66CEo80%2BaYpoIkqzUikz6Z5klQoWUWYRIJYEUGpQ%2BlIr9U5dOTLdCtkmWZis3rbnC5fw/neYW002307mX/cZvP3/7o1PwwOdh95x7vnf39zvnd29AgBer2xO6DclAXiMqZAqxIiNIN/IYSUS2BPhjmGATchUxI%2BADWiRhpWK7HKuHFVBFdmU5YvnI4grFGCaReF/EBH4KsZlGgj2JBTuCYBWRIYF8YoEOJ6wBt/gEs7mBbyOjQXruPLSdOgPCiEiPSUUHDoL8Ug5IUo9B/d5wrt%2BG7OAKNrODPuVdB6vRCIzN6SdBlpW9RIgk/1FeAXabzRlrUPVCS/JhbmwudztnGeeH9AyXBIwtmM3wLinZJZHifjHw2V%2BNBoRh%2B9ixQrbgbnaSIcl7cGea6hoXQbNe7za241oeO5Z0p42M4BV2EqP2D50wo%2B6HzvwC6C4sApNOR8cmOrtcnhtj2kYRyC9eBvXzKrBZrXSs72kFd1t3MoKVbMekQkEnSNKOO8fac3LpmK6l1TlGtsxmsdKFsecPYgwxst0cwROMYDXboSotg0WLBRqjY51jLYcENElXwW2XJKPydvoI2GN9T8rBtrAArYIUruBJXkFheCQYlCpQP6uk5dAQFQNaUROMSGVQFxLmkoQsxDJrhLbTZ%2BnvVsERME9MgPJRKV/58AsyomTSzE813WLFvWK%2B%2BqI0xSfQl8k8Pg46sYRuv5t6dS%2B4RqxDwaa4BGjYH%2BNTQvKScIp9%2BYL/hoZh3jDtLRHtt2C3g6bmhX%2BCpsFBWg7ilDSPgj0lD2ncr5ev/BP8VvyAJhqVyZeUhPOrEhEFxgEtjft846Z/guQTNT89Q5P9flMLoth4F7808wKtWWKzAwNQHxrh/1vaid2F%2BXpYTSbQf1XA2McOmOpROnvpvMEA4tSjq1cW0sws2gCYxswY6TKkvzYnJq1NHZLnRU4BX%2B4U0uburvusu8Kv8iHY7qefkM4IFngJHEOUXmLEPgiGsI8YnlZILit3vSSLRTQe/MPIZva5pshNIEmyFQlCvruJKXPkCEfmePzkphXHdzZNQdoRI9KPlBAxlj/I8U97ERPS5bjGbWDFbEdqHVe5caTBeZZx2H/IMvzeN15yoQAAAABJRU5ErkJggg%3D%3D"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/public/index.php%23L5"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L38"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:39 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/https%3A/resasfa.elementroot.tech/_wdt/styles"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:39 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156
{
    "exception": {}
}
error 22:12:39 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/http-kernel/HttpKernel.php%23L76"" at RouterListener.php line 156
{
    "exception": {}
}
info 07:50:51 Matched route "_wdt_stylesheet".
{
    "route": "_wdt_stylesheet",
    "route_parameters": {
        "_route": "_wdt_stylesheet",
        "_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
    "method": "GET"
}
info 10:55:06 Matched route "_wdt_stylesheet".
{
    "route": "_wdt_stylesheet",
    "route_parameters": {
        "_route": "_wdt_stylesheet",
        "_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
    "method": "GET"
}
error 13:18:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/favicon.ico" (from "https://resasfa.elementroot.tech/vehicles")" at RouterListener.php line 156
{
    "exception": {}
}
info 14:50:40 Matched route "_wdt_stylesheet".
{
    "route": "_wdt_stylesheet",
    "route_parameters": {
        "_route": "_wdt_stylesheet",
        "_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
    "method": "GET"
}
info 14:50:40 Matched route "_wdt".
{
    "route": "_wdt",
    "route_parameters": {
        "_route": "_wdt",
        "_controller": "web_profiler.controller.profiler::toolbarAction",
        "token": "114585"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/114585?XDEBUG_IGNORE=1",
    "method": "GET"
}
info 14:50:51 Matched route "_wdt".
{
    "route": "_wdt",
    "route_parameters": {
        "_route": "_wdt",
        "_controller": "web_profiler.controller.profiler::toolbarAction",
        "token": "862da3"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/862da3?XDEBUG_IGNORE=1",
    "method": "GET"
}
info 14:54:53 Matched route "_wdt".
{
    "route": "_wdt",
    "route_parameters": {
        "_route": "_wdt",
        "_controller": "web_profiler.controller.profiler::toolbarAction",
        "token": "4ea894"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/4ea894?XDEBUG_IGNORE=1",
    "method": "GET"
}
info 14:55:04 Matched route "_wdt_stylesheet".
{
    "route": "_wdt_stylesheet",
    "route_parameters": {
        "_route": "_wdt_stylesheet",
        "_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
    "method": "GET"
}
error 17:20:12 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/twint_ch.js"" at RouterListener.php line 156
{
    "exception": {}
}
info 07:12:43 Matched route "_wdt_stylesheet".
{
    "route": "_wdt_stylesheet",
    "route_parameters": {
        "_route": "_wdt_stylesheet",
        "_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
    "method": "GET"
}
info 13:47:17 Matched route "_wdt".
{
    "route": "_wdt",
    "route_parameters": {
        "_route": "_wdt",
        "_controller": "web_profiler.controller.profiler::toolbarAction",
        "token": "bdc220"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/bdc220?XDEBUG_IGNORE=1",
    "method": "GET"
}
info 15:53:53 Matched route "_wdt_stylesheet".
{
    "route": "_wdt_stylesheet",
    "route_parameters": {
        "_route": "_wdt_stylesheet",
        "_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
    "method": "GET"
}
error 17:48:06 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/css/support_parent.css"" at RouterListener.php line 156
{
    "exception": {}
}
error 17:48:06 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/lkk_ch.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 05:11:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/js/lkk_ch.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 05:11:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/css/support_parent.css"" at RouterListener.php line 156
{
    "exception": {}
}
error 10:27:05 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-json/"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:13:22 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/index.html"" at RouterListener.php line 156
{
    "exception": {}
}
info 18:37:35 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 18:37:35 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:35 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/sitemap.xml"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:36 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:50 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/laravel/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/laravel/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.production"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/admin/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.example"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/core/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.production"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/app.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/bundle.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:54 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/@vite/client"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/config.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/vendor.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/checkout.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/sw.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:55 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/bundle.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.git/HEAD"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/__env.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.txt"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php~"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:56 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.dev"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.backup"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.save"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.vscode/sftp.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-json/wc/v2/payment_gateways"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:57 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-content/uploads/wc-logs/"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/v1/config"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/api/stripe/config"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/manifest.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:37:58 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/cgi-bin/.%2e/%2e%2e/%2e%2e/%2e%2e/var/www/.env"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:08 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/vendor.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:13 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/sw.js"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:15 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.vite/manifest.json"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:15 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.bak"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:15 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-config.php.txt"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/wp-content/debug.log"" at RouterListener.php line 156
{
    "exception": {}
}
error 18:38:16 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/.env.backup"" at RouterListener.php line 156
{
    "exception": {}
}
error 19:25:04 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/robots.txt"" at RouterListener.php line 156
{
    "exception": {}
}
info 19:45:37 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 19:46:06 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/573677%3Fpanel%3Drequest"" at RouterListener.php line 156
{
    "exception": {}
}
info 20:51:34 Matched route "_wdt_stylesheet".
{
    "route": "_wdt_stylesheet",
    "route_parameters": {
        "_route": "_wdt_stylesheet",
        "_controller": "web_profiler.controller.profiler::toolbarStylesheetAction"
    },
    "request_uri": "https://resasfa.elementroot.tech/_wdt/styles",
    "method": "GET"
}
info 20:56:24 Matched route "app_realtime".
{
    "route": "app_realtime",
    "route_parameters": {
        "_route": "app_realtime",
        "_controller": "App\\Controller\\RealtimeController::index"
    },
    "request_uri": "https://resasfa.elementroot.tech/",
    "method": "GET"
}
error 20:56:31 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/a9dfde%3Fpanel%3Drequest"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/https%3A/symfony.com/doc/7.3.4/index.html"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L38"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:37 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/event-dispatcher/EventDispatcher.php%23L206"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:38 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/data%3Aimage/png%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABwAAAAgCAYAAAABtRhCAAADVUlEQVRIx82XX0jTURTHLYPyqZdefQx66CEo80%2BaYpoIkqzUikz6Z5klQoWUWYRIJYEUGpQ%2BlIr9U5dOTLdCtkmWZis3rbnC5fw/neYW002307mX/cZvP3/7o1PwwOdh95x7vnf39zvnd29AgBer2xO6DclAXiMqZAqxIiNIN/IYSUS2BPhjmGATchUxI%2BADWiRhpWK7HKuHFVBFdmU5YvnI4grFGCaReF/EBH4KsZlGgj2JBTuCYBWRIYF8YoEOJ6wBt/gEs7mBbyOjQXruPLSdOgPCiEiPSUUHDoL8Ug5IUo9B/d5wrt%2BG7OAKNrODPuVdB6vRCIzN6SdBlpW9RIgk/1FeAXabzRlrUPVCS/JhbmwudztnGeeH9AyXBIwtmM3wLinZJZHifjHw2V%2BNBoRh%2B9ixQrbgbnaSIcl7cGea6hoXQbNe7za241oeO5Z0p42M4BV2EqP2D50wo%2B6HzvwC6C4sApNOR8cmOrtcnhtj2kYRyC9eBvXzKrBZrXSs72kFd1t3MoKVbMekQkEnSNKOO8fac3LpmK6l1TlGtsxmsdKFsecPYgwxst0cwROMYDXboSotg0WLBRqjY51jLYcENElXwW2XJKPydvoI2GN9T8rBtrAArYIUruBJXkFheCQYlCpQP6uk5dAQFQNaUROMSGVQFxLmkoQsxDJrhLbTZ%2BnvVsERME9MgPJRKV/58AsyomTSzE813WLFvWK%2B%2BqI0xSfQl8k8Pg46sYRuv5t6dS%2B4RqxDwaa4BGjYH%2BNTQvKScIp9%2BYL/hoZh3jDtLRHtt2C3g6bmhX%2BCpsFBWg7ilDSPgj0lD2ncr5ev/BP8VvyAJhqVyZeUhPOrEhEFxgEtjft846Z/guQTNT89Q5P9flMLoth4F7808wKtWWKzAwNQHxrh/1vaid2F%2BXpYTSbQf1XA2McOmOpROnvpvMEA4tSjq1cW0sws2gCYxswY6TKkvzYnJq1NHZLnRU4BX%2B4U0uburvusu8Kv8iHY7qefkM4IFngJHEOUXmLEPgiGsI8YnlZILit3vSSLRTQe/MPIZva5pshNIEmyFQlCvruJKXPkCEfmePzkphXHdzZNQdoRI9KPlBAxlj/I8U97ERPS5bjGbWDFbEdqHVe5caTBeZZx2H/IMvzeN15yoQAAAABJRU5ErkJggg%3D%3D"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:39 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/symfony/routing/Matcher/UrlMatcher.php%23L89"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:40 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L45"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:41 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_profiler/file%3A/app/vendor/symfony/routing/Matcher/UrlMatcher.php%23L89"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L38"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/autoload_runtime.php%23L29"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:44 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Matcher/UrlMatcher.php%23L89"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:45 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/https%3A/resasfa.elementroot.tech/_wdt/file%3A/app/vendor/runtime/frankenphp-symfony/src/Runner.php%23L45"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:52 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/http-kernel/EventListener/RouterListener.php%23L156"" at RouterListener.php line 156
{
    "exception": {}
}
error 20:56:53 Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "No route found for "GET https://resasfa.elementroot.tech/file%3A/app/vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php%23L70"" at RouterListener.php line 156
{
    "exception": {}
}
info 22:26:57 Matched route "_profiler_home".
{
    "route": "_profiler_home",
    "route_parameters": {
        "_controller": "Symfony\\Bundle\\FrameworkBundle\\Controller\\RedirectController::urlRedirectAction",
        "path": "/_profiler/",
        "permanent": true,
        "scheme": null,
        "httpPort": 80,
        "httpsPort": 443,
        "_route": "_profiler_home"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler",
    "method": "GET"
}
info 23:45:18 Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bb58c6"
    },
    "request_uri": "https://resasfa.elementroot.tech/_profiler/bb58c6",
    "method": "GET"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://resasfa.elementroot.tech/robots.txt"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:156
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  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:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:38)
  at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
  at frankenphp_handle_request(object(Closure))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:45)
  at Runtime\FrankenPhpSymfony\Runner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/app/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:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/robots.txt/')
     (vendor/symfony/routing/Matcher/UrlMatcher.php:89)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
     (vendor/symfony/routing/Router.php:188)
  at Symfony\Component\Routing\Router->matchRequest(object(Request))
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:101)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(EventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure), object(Closure)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:159)
  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:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:38)
  at Runtime\FrankenPhpSymfony\Runner->{closure:Runtime\FrankenPhpSymfony\Runner::run():33}()
  at frankenphp_handle_request(object(Closure))
     (vendor/runtime/frankenphp-symfony/src/Runner.php:45)
  at Runtime\FrankenPhpSymfony\Runner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/app/vendor/autoload_runtime.php')
     (public/index.php:5)