Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
if ($referer = $request->headers->get('referer')) {
$message .= sprintf(' (from "%s")', $referer);
}
throw new NotFoundHttpException($message, $e);
} catch (MethodNotAllowedException $e) {
$message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getPathInfo(), implode(', ', $e->getAllowedMethods()));
throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 126)
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 264)
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
doDispatch
(line 239)
* @param object $event The event object to pass to the event handlers/listeners
*/
protected function callListeners(iterable $listeners, string $eventName, $event)
{
if ($event instanceof Event) {
$this->doDispatch($listeners, $eventName, $event);
return;
}
$stoppable = $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 73)
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 168)
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 145)
*/
private function handleRaw(Request $request, int $type = self::MASTER_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 81)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 201)
Symfony\Component\Routing\Exception\ ResourceNotFoundException
in
vendor/symfony/routing/Matcher/UrlMatcher.php
->
match
(line 106)
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 274)
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 112)
// add attributes based on the request (routing)
try {
// matching a request is more powerful than matching a URL path + context, so try that first
if ($this->matcher instanceof RequestMatcherInterface) {
$parameters = $this->matcher->matchRequest($request);
} else {
$parameters = $this->matcher->match($request->getPathInfo());
}
if (null !== $this->logger) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 126)
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 264)
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
doDispatch
(line 239)
* @param object $event The event object to pass to the event handlers/listeners
*/
protected function callListeners(iterable $listeners, string $eventName, $event)
{
if ($event instanceof Event) {
$this->doDispatch($listeners, $eventName, $event);
return;
}
$stoppable = $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 73)
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 168)
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 145)
*/
private function handleRaw(Request $request, int $type = self::MASTER_REQUEST): Response
{
// request
$event = new RequestEvent($this, $request, $type);
$this->dispatcher->dispatch($event, KernelEvents::REQUEST);
if ($event->hasResponse()) {
return $this->filterResponse($event->getResponse(), $request, $type);
}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 81)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
try {
return $this->handleRaw($request, $type);
} catch (\Exception $e) {
if ($e instanceof RequestExceptionInterface) {
$e = new BadRequestHttpException($e->getMessage(), $e);
}
if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 201)
Logs
Level | Channel | Message |
---|---|---|
INFO 08:03:10 | app |
CORE API INPUT { "subject": { "attributes": {}, "request": {}, "query": {}, "server": {}, "files": {}, "cookies": {}, "headers": {} }, "_direction": "CORE-I", "type": "request" } |
INFO 08:03:10 | app |
CORE API INPUT { "subject": { "attributes": {}, "request": {}, "query": {}, "server": {}, "files": {}, "cookies": {}, "headers": {} }, "_direction": "CORE-I", "type": "request" } |
INFO 08:03:10 | 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 08:03:10 | app |
CORE API INPUT { "subject": { "attributes": {}, "request": {}, "query": {}, "server": {}, "files": {}, "cookies": {}, "headers": {} }, "_direction": "CORE-I", "type": "request" } |
INFO 08:03:10 | 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 08:03:10 | 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) |