https://banking-core-api-test.phoenix-payments.com/robots.txt

Exceptions

No route found for "GET /robots.txt"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  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->getPathInfo(), implode(', '$e->getAllowedMethods()));
  7.             throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message$e);
  8.         }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.      * @param object     $event     The event object to pass to the event handlers/listeners
  2.      */
  3.     protected function callListeners(iterable $listenersstring $eventName$event)
  4.     {
  5.         if ($event instanceof Event) {
  6.             $this->doDispatch($listeners$eventName$event);
  7.             return;
  8.         }
  9.         $stoppable $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
  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::MASTER_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.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  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.     }
Kernel->handle(object(Request)) in public/index.php (line 45)
  1.     Request::setTrustedHosts(explode(','$trustedHosts));
  2. }
  3. $kernel = new Kernel($env$debug);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

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.      */
  2.     public function matchRequest(Request $request)
  3.     {
  4.         $this->request $request;
  5.         $ret $this->match($request->getPathInfo());
  6.         $this->request null;
  7.         return $ret;
  8.     }
in vendor/symfony/routing/Router.php -> matchRequest (line 274)
  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.             if (null !== $this->logger) {
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.      * @param object     $event     The event object to pass to the event handlers/listeners
  2.      */
  3.     protected function callListeners(iterable $listenersstring $eventName$event)
  4.     {
  5.         if ($event instanceof Event) {
  6.             $this->doDispatch($listeners$eventName$event);
  7.             return;
  8.         }
  9.         $stoppable $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
  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::MASTER_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.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  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.     }
Kernel->handle(object(Request)) in public/index.php (line 45)
  1.     Request::setTrustedHosts(explode(','$trustedHosts));
  2. }
  3. $kernel = new Kernel($env$debug);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 06:12:54 app CORE API INPUT
{
    "subject": {
        "attributes": {},
        "request": {},
        "query": {},
        "server": {},
        "files": {},
        "cookies": {},
        "headers": {}
    },
    "_direction": "CORE-I",
    "type": "request"
}
INFO 06:12:54 app CORE API INPUT
{
    "subject": {
        "attributes": {},
        "request": {},
        "query": {},
        "server": {},
        "files": {},
        "cookies": {},
        "headers": {}
    },
    "_direction": "CORE-I",
    "type": "request"
}
INFO 06:12:54 app CORE API RESPONSE
{
    "subject": "/* This file is based on WebProfilerBundle/Resources/views/Profiler/profiler.css.twig.\n   If you make any change in this file, verify the same change is needed in the other file. */\n:root {\n    --font-sans-serif: Helvetica, Arial, sans-serif;\n    --page-background: #f9f9f9;\n    --color-text: #222;\n    /* when updating any of these colors, do the same in toolbar.css.twig */\n    --color-success: #4f805d;\n    --color-warning: #a46a1f;\n    --color-error: #b0413e;\n    --color-muted: #999;\n    --tab-background: #fff;\n    --tab-color: #444;\n    --tab-active-background: #666;\n    --tab-active-color: #fafafa;\n    --tab-disabled-background: #f5f5f5;\n    --tab-disabled-color: #999;\n    --metric-value-background: #fff;\n    --metric-value-color: inherit;\n    --metric-unit-color: #999;\n    --metric-label-background: #e0e0e0;\n    --metric-label-color: inherit;\n    --table-border: #e0e0e0;\n    --table-background: #fff;\n    --table-header: #e0e0e0;\n    --trace-selected-background: #F7E5A1;\n    --tree-active-background: #F7E5A1;\n    --exception-title-color: var(--base-2);\n    --shadow: 0px 0px 1px rgba(128, 128, 128, .2);\n    --border: 1px solid #e0e0e0;\n    --background-error: var(--color-error);\n    --highlight-comment: #969896;\n    --highlight-default: #222222;\n    --highlight-keyword: #a71d5d;\n    --highlight-string: #183691;\n    --base-0: #fff;\n    --base-1: #f5f5f5;\n    --base-2: #e0e0e0;\n    --base-3: #ccc;\n    --base-4: #666;\n    --base-5: #444;\n    --base-6: #222;\n}\n\nhtml{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=\"button\"],input[type=\"reset\"],input[type=\"submit\"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=\"checkbox\"],input[type=\"radio\"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=\"number\"]::-webkit-inner-spin-button,input[type=\"number\"]::-webkit-outer-spin-button{height:auto}input[type=\"search\"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=\"search\"]::-webkit-search-cancel-button,input[type=\"search\"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}\n\nhtml {\n    /* always display the vertical scrollbar to avoid jumps when toggling contents */\n    overflow-y: scroll;\n}\nbody { background-color: #F9F9F9; color: var(--base-6); font: 14px/1.4 Helvetica, Arial, sans-serif; padding-bottom: 45px; }\n\na { cursor: pointer; text-decoration: none; }\na:hover { text-decoration: underline; }\nabbr[title] { border-bottom: none; cursor: help; text-decoration: none; }\n\ncode, pre { font: 13px/1.5 Consolas, Monaco, Menlo, \"Ubuntu Mono\", \"Liberation Mono\", monospace; }\n\ntable, tr, th, td { background: #FFF; border-collapse: collapse; vertical-align: top; }\ntable { background: #FFF; border: var(--border); box-shadow: 0px 0px 1px rgba(128, 128, 128, .2); margin: 1em 0; width: 100%; }\ntable th, table td { border: solid var(--base-2); border-width: 1px 0; padding: 8px 10px; }\ntable th { background-color: var(--base-2); font-weight: bold; text-align: left; }\n\n.m-t-5 { margin-top: 5px; }\n.hidden-xs-down { display: none; }\n.block { display: block; }\n.full-width { width: 100%; }\n.hidden { display: none; }\n.prewrap { white-space: pre-wrap; }\n.nowrap { white-space: nowrap; }\n.newline { display: block; }\n.break-long-words { word-wrap: break-word; overflow-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; min-width: 0; }\n.text-small { font-size: 12px !important; }\n.text-muted { color: #999; }\n.text-bold { font-weight: bold; }\n.empty { border: 4px dashed var(--base-2); color: #999; margin: 1em 0; padding: .5em 2em; }\n\n.status-success { background: rgba(94, 151, 110, 0.3); }\n.status-warning { background: rgba(240, 181, 24, 0.3); }\n.status-error { background: rgba(176, 65, 62, 0.2); }\n.status-success td, .status-warning td, .status-error td { background: transparent; }\ntr.status-error td, tr.status-warning td { border-bottom: 1px solid #FAFAFA; border-top: 1px solid #FAFAFA; }\n.status-warning .colored { color: #A46A1F; }\n.status-error .colored  { color: var(--color-error); }\n\n.sf-toggle { cursor: pointer; }\n.sf-toggle-content { -moz-transition: display .25s ease; -webkit-transition: display .25s ease; transition: display .25s ease; }\n.sf-toggle-content.sf-toggle-hidden { display: none; }\n.sf-toggle-content.sf-toggle-visible { display: block; }\nthead.sf-toggle-content.sf-toggle-visible, tbody.sf-toggle-content.sf-toggle-visible { display: table-row-group; }\n.sf-toggle-off .icon-close, .sf-toggle-on .icon-open { display: none; }\n.sf-toggle-off .icon-open, .sf-toggle-on .icon-close { display: block; }\n\n.tab-navigation { margin: 0 0 1em 0; padding: 0; }\n.tab-navigation li { background: var(--tab-background); border: 1px solid var(--table-border); color: var(--tab-color); cursor: pointer; display: inline-block; font-size: 16px; margin: 0 0 0 -1px; padding: .5em .75em; z-index: 1; }\n.tab-navigation li .badge { background-color: var(--base-1); color: var(--base-4); display: inline-block; font-size: 14px; font-weight: bold; margin-left: 8px; min-width: 10px; padding: 1px 6px; text-align: center; white-space: nowrap; }\n.tab-navigation li.disabled { background: var(--tab-disabled-background); color: var(--tab-disabled-color); }\n.tab-navigation li.active { background: var(--tab-active-background); color: var(--tab-active-color); z-index: 1100; }\n.tab-navigation li.active .badge { background-color: var(--base-5); color: var(--base-2); }\n.tab-content > *:first-child { margin-top: 0; }\n.tab-navigation li .badge.status-warning { background: var(--color-warning); color: #FFF; }\n.tab-navigation li .badge.status-error { background: var(--background-error); color: #FFF; }\n.sf-tabs .tab:not(:first-child) { display: none; }\n\n[data-filters] { position: relative; }\n[data-filtered] { cursor: pointer; }\n[data-filtered]:after { content: '\\00a0\\25BE'; }\n[data-filtered]:hover .filter-list li { display: inline-flex; }\n[class*=\"filter-hidden-\"] { display: none; }\n.filter-list { position: absolute; border: var(--border); box-shadow: var(--shadow); margin: 0; padding: 0; display: flex; flex-direction: column; }\n.filter-list :after { content: ''; }\n.filter-list li {\n    background: var(--tab-disabled-background);\n    border-bottom: var(--border);\n    color: var(--tab-disabled-color);\n    display: none;\n    list-style: none;\n    margin: 0;\n    padding: 5px 10px;\n    text-align: left;\n    font-weight: normal;\n}\n.filter-list li.active {\n    background: var(--tab-background);\n    color: var(--tab-color);\n}\n.filter-list li.last-active {\n    background: var(--tab-active-background);\n    color: var(--tab-active-color);\n}\n\n.filter-list-level li { cursor: s-resize; }\n.filter-list-level li.active { cursor: n-resize; }\n.filter-list-level li.last-active { cursor: default; }\n.filter-list-level li.last-active:before { content: '\\2714\\00a0'; }\n.filter-list-choice li:before { content: '\\2714\\00a0'; color: transparent; }\n.filter-list-choice li.active:before { color: unset; }\n\n.container { max-width: 1024px; margin: 0 auto; padding: 0 15px; }\n.container::after { content: \"\"; display: table; clear: both; }\n\nheader { background-color: var(--base-6); color: rgba(255, 255, 255, 0.75); font-size: 13px; height: 33px; line-height: 33px; padding: 0; }\nheader .container { display: flex; justify-content: space-between; }\n.logo { flex: 1; font-size: 13px; font-weight: normal; margin: 0; padding: 0; }\n.logo svg { height: 18px; width: 18px; opacity: .8; vertical-align: -5px; }\n\n.help-link { margin-left: 15px; }\n.help-link a { color: inherit; }\n.help-link .icon svg { height: 15px; width: 15px; opacity: .7; vertical-align: -2px; }\n.help-link a:hover { color: #EEE; text-decoration: none; }\n.help-link a:hover svg { opacity: .9; }\n\n.exception-summary { background: var(--background-error); border-bottom: 2px solid rgba(0, 0, 0, 0.1); border-top: 1px solid rgba(0, 0, 0, .3); flex: 0 0 auto; margin-bottom: 15px; }\n.exception-metadata { background: rgba(0, 0, 0, 0.1); padding: 7px 0; }\n.exception-metadata .container { display: flex; flex-direction: row; justify-content: space-between; }\n.exception-metadata h2, .exception-metadata h2 > a { color: rgba(255, 255, 255, 0.8); font-size: 13px; font-weight: 400; margin: 0; }\n.exception-http small { font-size: 13px; opacity: .7; }\n.exception-hierarchy { flex: 1; }\n.exception-hierarchy .icon { margin: 0 3px; opacity: .7; }\n.exception-hierarchy .icon svg { height: 13px; width: 13px; vertical-align: -2px; }\n\n.exception-without-message .exception-message-wrapper { display: none; }\n.exception-message-wrapper .container { display: flex; align-items: flex-start; min-height: 70px; padding: 10px 15px 8px; }\n.exception-message { flex-grow: 1; }\n.exception-message, .exception-message a { color: #FFF; font-size: 21px; font-weight: 400; margin: 0; }\n.exception-message.long { font-size: 18px; }\n.exception-message a { border-bottom: 1px solid rgba(255, 255, 255, 0.5); font-size: inherit; text-decoration: none; }\n.exception-message a:hover { border-bottom-color: #ffffff; }\n\n.exception-illustration { flex-basis: 111px; flex-shrink: 0; height: 66px; margin-left: 15px; opacity: .7; }\n\n.trace + .trace { margin-top: 30px; }\n.trace-head { background-color: var(--base-2); padding: 10px; position: relative; }\n.trace-head .trace-class { color: var(--base-6); font-size: 18px; font-weight: bold; line-height: 1.3; margin: 0; position: relative; }\n.trace-head .trace-namespace { color: #999; display: block; font-size: 13px; }\n.trace-head .icon { position: absolute; right: 0; top: 0; }\n.trace-head .icon svg { height: 24px; width: 24px; }\n\n.trace-details { background: var(--base-0); border: var(--border); box-shadow: 0px 0px 1px rgba(128, 128, 128, .2); margin: 1em 0; table-layout: fixed; }\n\n.trace-message { font-size: 14px; font-weight: normal; margin: .5em 0 0; }\n\n.trace-line { position: relative; padding-top: 8px; padding-bottom: 8px; }\n.trace-line + .trace-line { border-top: var(--border); }\n.trace-line:hover { background: var(--base-1); }\n.trace-line a { color: var(--base-6); }\n.trace-line .icon { opacity: .4; position: absolute; left: 10px; }\n.trace-line .icon svg { height: 16px; width: 16px; }\n.trace-line-header { padding-left: 36px; padding-right: 10px; }\n\n.trace-file-path, .trace-file-path a { color: var(--base-6); font-size: 13px; }\n.trace-class { color: var(--color-error); }\n.trace-type { padding: 0 2px; }\n.trace-method { color: var(--color-error); font-weight: bold; }\n.trace-arguments { color: #777; font-weight: normal; padding-left: 2px; }\n\n.trace-code { background: var(--base-0); font-size: 12px; margin: 10px 10px 2px 10px; padding: 10px; overflow-x: auto; white-space: nowrap; }\n.trace-code ol { margin: 0; float: left; }\n.trace-code li { color: #969896; margin: 0; padding-left: 10px; float: left; width: 100%; }\n.trace-code li + li { margin-top: 5px; }\n.trace-code li.selected { background: var(--trace-selected-background); margin-top: 2px; }\n.trace-code li code { color: var(--base-6); white-space: nowrap; }\n\n.trace-as-text .stacktrace { line-height: 1.8; margin: 0 0 15px; white-space: pre-wrap; }\n\n@media (min-width: 575px) {\n    .hidden-xs-down { display: initial; }\n    .help-link { margin-left: 30px; }\n}",
    "status_code": 200,
    "_direction": "CORE-O",
    "type": "response"
}
INFO 06:12:54 app CORE API INPUT
{
    "subject": {
        "attributes": {},
        "request": {},
        "query": {},
        "server": {},
        "files": {},
        "cookies": {},
        "headers": {}
    },
    "_direction": "CORE-I",
    "type": "request"
}
INFO 06:12:54 app CORE API RESPONSE
{
    "subject": "<div id=\"sidebar-search\" class=\"hidden\">\n    <form action=\"/_profiler/search\" method=\"get\">\n        <div class=\"form-group\">\n            <label for=\"ip\">IP</label>\n            <input type=\"text\" name=\"ip\" id=\"ip\" value=\"\">\n        </div>\n\n        <div class=\"form-group\">\n            <label for=\"method\">Method</label>\n            <select name=\"method\" id=\"method\">\n                <option value=\"\">Any</option>\n                                    <option >DELETE</option>\n                                    <option >GET</option>\n                                    <option >HEAD</option>\n                                    <option >PATCH</option>\n                                    <option >POST</option>\n                                    <option >PUT</option>\n                            </select>\n        </div>\n\n        <div class=\"form-group\">\n            <label for=\"status_code\">Status</label>\n            <input type=\"number\" name=\"status_code\" id=\"status_code\" min=\"100\" max=\"599\" value=\"\">\n        </div>\n\n        <div class=\"form-group\">\n            <label for=\"url\">URL</label>\n            <input type=\"text\" name=\"url\" id=\"url\" value=\"\">\n        </div>\n\n        <div class=\"form-group\">\n            <label for=\"token\">Token</label>\n            <input type=\"text\" name=\"token\" id=\"token\" value=\"\">\n        </div>\n\n        <div class=\"form-group\">\n            <label for=\"start\">From</label>\n            <input type=\"date\" name=\"start\" id=\"start\" value=\"\">\n        </div>\n\n        <div class=\"form-group\">\n            <label for=\"end\">Until</label>\n            <input type=\"date\" name=\"end\" id=\"end\" value=\"\">\n        </div>\n\n        <div class=\"form-group\">\n            <label for=\"limit\">Results</label>\n            <select name=\"limit\" id=\"limit\">\n                                    <option >10</option>\n                                    <option >50</option>\n                                    <option >100</option>\n                            </select>\n        </div>\n\n        <div class=\"form-group\">\n            <button type=\"submit\" class=\"btn btn-sm\">Search</button>\n        </div>\n    </form>\n</div>\n",
    "status_code": 200,
    "_direction": "CORE-O",
    "type": "response"
}
INFO 06:12:54 app CORE API INPUT
{
    "subject": {
        "attributes": {},
        "request": {},
        "query": {},
        "server": {},
        "files": {},
        "cookies": {},
        "headers": {}
    },
    "_direction": "CORE-I",
    "type": "request"
}

Stack Traces 2

[2/2] NotFoundHttpException

Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET /robots.txt"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:136
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:264)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:239)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:73)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:145)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:81)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:45)                

[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:106)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
     (vendor/symfony/routing/Router.php:274)
  at Symfony\Component\Routing\Router->matchRequest(object(Request))
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:112)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:264)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:239)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:73)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:145)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:81)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:201)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:45)