Passed
Push — master ( 81da44...a02115 )
by Henri
01:33
created
src/Router.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -48,15 +48,15 @@  discard block
 block discarded – undo
48 48
     {
49 49
         $this->lastReturn = null;
50 50
         
51
-		$url = (substr($url,0,1) !=='/' and strlen($url) > 0) ? "/{$url}" : $url;
51
+        $url = (substr($url,0,1) !=='/' and strlen($url) > 0) ? "/{$url}" : $url;
52 52
 
53
-    	$this->checkExistence($url,$protocol);
53
+        $this->checkExistence($url,$protocol);
54 54
         $this->checkTypeRole($walking);
55 55
 
56
-		$route = [
57
-			'url' => $this->prefix.$url,
58
-			'role' => $walking,
59
-			'protocol' => $protocol,
56
+        $route = [
57
+            'url' => $this->prefix.$url,
58
+            'role' => $walking,
59
+            'protocol' => $protocol,
60 60
             'middlewares' => null,
61 61
             'where' => null,
62 62
             'before' => null,
@@ -64,9 +64,9 @@  discard block
 block discarded – undo
64 64
             'after' => null,
65 65
             'afterAll' => $this->afterAll,
66 66
             'group' => self::getInstance()->group
67
-		];
67
+        ];
68 68
 
69
-		$this->routers[] = $route;		
69
+        $this->routers[] = $route;		
70 70
         
71 71
         return self::getInstance();
72 72
     }
Please login to merge, or discard this patch.