Passed
Push — master ( b9a9b1...3110e0 )
by Robson
01:44
created
src/RouterTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
         $route = (!$this->group ? $route : "/{$this->group}{$route}");
75 75
         $data = $this->data;
76 76
         $namespace = $this->namespace;
77
-        $router = function () use ($method, $handler, $data, $route, $name, $namespace) {
77
+        $router = function() use ($method, $handler, $data, $route, $name, $namespace) {
78 78
             return [
79 79
                 "route" => $route,
80 80
                 "name" => $name,
Please login to merge, or discard this patch.
src/Dispatch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      * @param null|string $namespace
72 72
      * @return Dispatch
73 73
      */
74
-    public function namespace(?string $namespace): Dispatch
74
+    public function namespace(?string $namespace) : Dispatch
75 75
     {
76 76
         $this->namespace = ($namespace ? ucwords($namespace) : null);
77 77
         return $this;
Please login to merge, or discard this patch.