Completed
Push — master ( 21cb66...de0e4f )
by Patrick
02:47
created
src/Adapters/FastRoute/RouteDispatcher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.