@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | $route->bind($routeInfo[2]); |
61 | 61 | } |
62 | 62 | |
63 | - return $this->dispatcher->dispatch($route, function ($response) { |
|
63 | + return $this->dispatcher->dispatch($route, function($response) { |
|
64 | 64 | return $response; |
65 | 65 | }); |
66 | 66 | } |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | */ |
71 | 71 | private function createDispatcher() |
72 | 72 | { |
73 | - return \FastRoute\simpleDispatcher(function (RouteCollector $collector) { |
|
73 | + return \FastRoute\simpleDispatcher(function(RouteCollector $collector) { |
|
74 | 74 | foreach ($this->collection as $route) { |
75 | 75 | $collector->addRoute($route->methods(), $route->uri(), $route); |
76 | 76 | } |