Remove debug statement

This commit is contained in:
Franz Liedke 2015-06-17 00:53:03 +02:00
parent 1cbc60ca41
commit 29c7bf1b42

View File

@ -43,7 +43,7 @@ class RouterMiddleware
$method = $request->getMethod();
$uri = $request->getUri()->getPath();
$routeInfo = $this->getDispatcher()->dispatch($method, $uri);dd($request, $this->routes, $routeInfo);
$routeInfo = $this->getDispatcher()->dispatch($method, $uri);
switch ($routeInfo[0]) {
case Dispatcher::NOT_FOUND: