Passed
Branch master (636813)
by Sinnarasa
05:09
created
src/Routing/Dispatcher/MvcDispatcher.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace JetFire\Routing\Dispatcher;
4 4
 
5
-use JetFire\Routing\Router;
6
-use ReflectionClass;
5
+use JetFire\Routing\Router;
6
+use ReflectionClass;
7 7
 use ReflectionMethod;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,8 +40,9 @@  discard block
 block discarded – undo
40 40
                 array_unshift($dependencies, new $class);
41 41
             }
42 42
         }
43
-        if ($this->router->route->getResponse('code') == 202)
44
-            $this->router->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']);
43
+        if ($this->router->route->getResponse('code') == 202) {
44
+                    $this->router->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']);
45
+        }
45 46
         return $reflectionMethod->invokeArgs($this->getController(), $dependencies);
46 47
     }
47 48
 
@@ -53,8 +54,9 @@  discard block
 block discarded – undo
53 54
     private function getController()
54 55
     {
55 56
         $reflector = new ReflectionClass($this->router->route->getTarget('controller'));
56
-        if (!$reflector->isInstantiable())
57
-            throw new \Exception('Target [' . $this->router->route->getTarget('controller') . '] is not instantiable.');
57
+        if (!$reflector->isInstantiable()) {
58
+                    throw new \Exception('Target [' . $this->router->route->getTarget('controller') . '] is not instantiable.');
59
+        }
58 60
         $constructor = $reflector->getConstructor();
59 61
         if (is_null($constructor)) {
60 62
             $class = $this->router->route->getTarget('controller');
Please login to merge, or discard this patch.
src/Routing/Match/RoutesMatch.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-     * @param $regex
67
+     * @param string $regex
68 68
      * @return bool
69 69
      */
70 70
     private function routeMatch($regex)
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     private function generateTarget()
88 88
     {
89
-        if(is_callable($this->request['path'])){
89
+        if (is_callable($this->request['path'])) {
90 90
             $this->router->route->setCallback($this->request['path']);
91 91
             $this->router->route->setDetail($this->request);
92 92
             $this->anonymous();
@@ -99,10 +99,10 @@  discard block
 block discarded – undo
99 99
                     ? $this->router->route->setCallback($this->request['path']['use'])
100 100
                     : $this->router->route->setCallback($this->request['path']);
101 101
             $this->router->route->setDetail($this->request);
102
-            if($this->validMethod()) {
103
-                $this->anonymous();$this->mvc();$this->template();
102
+            if ($this->validMethod()) {
103
+                $this->anonymous(); $this->mvc(); $this->template();
104 104
                 $this->router->route->setResponse(['code' => 202, 'message' => 'Accepted']);
105
-            }else
105
+            } else
106 106
                 $this->router->route->setResponse(['code' => 405, 'message' => 'Method Not Allowed']);
107 107
         }
108 108
         return $this->router->route->hasTarget();
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             $index = isset($this->request['index']) ? $this->request['index'] : 0;
145 145
             $class = (class_exists($routes[0]))
146 146
                 ? $routes[0]
147
-                : $this->router->collection->getRoutes()['namespace_'.$index].$routes[0];
147
+                : $this->router->collection->getRoutes()['namespace_' . $index] . $routes[0];
148 148
             if (!class_exists($class))
149 149
                 throw new \Exception('Class "' . $class . '." is not found');
150 150
             if (method_exists($class, $routes[1])) {
@@ -167,23 +167,23 @@  discard block
 block discarded – undo
167 167
             $extension = explode('.', $path);
168 168
             $extension = end($extension);
169 169
             $index = isset($this->request['index']) ? $this->request['index'] : 0;
170
-            $block = $this->router->collection->getRoutes('path_'.$index);
170
+            $block = $this->router->collection->getRoutes('path_' . $index);
171 171
             if (in_array('.' . $extension, $this->router->getConfig()['viewExtension'])) {
172 172
                 if (is_file($block . $path)) {
173 173
                     $target = $block . $path;
174
-                    $this->router->route->setTarget(['dispatcher' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', 'template' => $target,'block' => $block, 'extension' => $extension]);
174
+                    $this->router->route->setTarget(['dispatcher' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', 'template' => $target, 'block' => $block, 'extension' => $extension]);
175 175
                     return true;
176 176
                 }
177 177
                 throw new \Exception('Template file "' . $path . '" is not found in "' . $block . '"');
178 178
             } else {
179 179
                 foreach ($this->router->getConfig()['viewExtension'] as $ext) {
180
-                    if (is_file($block . $path . $ext)){
180
+                    if (is_file($block . $path . $ext)) {
181 181
                         $target = $block . $path . $ext;
182
-                        $this->router->route->setTarget(['dispatcher' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', 'template' => $target,'block' => $block,  'extension' => str_replace('.', '', $ext)]);
182
+                        $this->router->route->setTarget(['dispatcher' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', 'template' => $target, 'block' => $block, 'extension' => str_replace('.', '', $ext)]);
183 183
                         return true;
184 184
                     }
185 185
                 }
186
-                throw new \Exception('Template file "' . $path . '" is not found in "' .$block . '"');
186
+                throw new \Exception('Template file "' . $path . '" is not found in "' . $block . '"');
187 187
             }
188 188
         }
189 189
         return false;
Please login to merge, or discard this patch.
Braces   +27 added lines, -15 removed lines patch added patch discarded remove patch
@@ -42,8 +42,9 @@  discard block
 block discarded – undo
42 42
                 $this->request['path'] = $dependencies;
43 43
                 $this->request['index'] = $i;
44 44
                 $this->request['route'] = preg_replace_callback('#:([\w]+)#', [$this, 'paramMatch'], '/' . trim(trim($this->request['prefix'], '/') . '/' . trim($route, '/'), '/'));
45
-                if ($this->routeMatch('#^' . $this->request['route'] . '$#'))
46
-                    return $this->generateTarget();
45
+                if ($this->routeMatch('#^' . $this->request['route'] . '$#')) {
46
+                                    return $this->generateTarget();
47
+                }
47 48
             }
48 49
         }
49 50
         unset($this->request);
@@ -71,8 +72,9 @@  discard block
 block discarded – undo
71 72
     {
72 73
         if (substr($this->request['route'], -1) == '*') {
73 74
             $pos = strpos($this->request['route'], '*');
74
-            if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos))
75
-                if (isset($this->request)) return true;
75
+            if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos)) {
76
+                            if (isset($this->request)) return true;
77
+            }
76 78
         }
77 79
         if (preg_match($regex, $this->router->route->getUrl(), $this->request['parameters'])) {
78 80
             array_shift($this->request['parameters']);
@@ -92,18 +94,24 @@  discard block
 block discarded – undo
92 94
             $this->anonymous();
93 95
             $this->router->route->setResponse(['code' => 202, 'message' => 'Accepted']);
94 96
         } else {
95
-            if (isset($this->request['path']['name'])) $this->router->route->setName($this->request['path']['name']);
96
-            if (isset($this->request['path']['method'])) $this->request['path']['method'] = is_array($this->request['path']['method']) ? $this->request['path']['method'] : [$this->request['path']['method']];
97
-            if (isset($this->request['path']))
98
-                (is_array($this->request['path']) && isset($this->request['path']['use']))
97
+            if (isset($this->request['path']['name'])) {
98
+                $this->router->route->setName($this->request['path']['name']);
99
+            }
100
+            if (isset($this->request['path']['method'])) {
101
+                $this->request['path']['method'] = is_array($this->request['path']['method']) ? $this->request['path']['method'] : [$this->request['path']['method']];
102
+            }
103
+            if (isset($this->request['path'])) {
104
+                            (is_array($this->request['path']) && isset($this->request['path']['use']))
99 105
                     ? $this->router->route->setCallback($this->request['path']['use'])
100 106
                     : $this->router->route->setCallback($this->request['path']);
107
+            }
101 108
             $this->router->route->setDetail($this->request);
102 109
             if($this->validMethod()) {
103 110
                 $this->anonymous();$this->mvc();$this->template();
104 111
                 $this->router->route->setResponse(['code' => 202, 'message' => 'Accepted']);
105
-            }else
106
-                $this->router->route->setResponse(['code' => 405, 'message' => 'Method Not Allowed']);
112
+            } else {
113
+                            $this->router->route->setResponse(['code' => 405, 'message' => 'Method Not Allowed']);
114
+            }
107 115
         }
108 116
         return $this->router->route->hasTarget();
109 117
     }
@@ -113,8 +121,9 @@  discard block
 block discarded – undo
113 121
      */
114 122
     public function validMethod()
115 123
     {
116
-        if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')
117
-            return (isset($this->request['path']['ajax']) && $this->request['path']['ajax'] == true) ? true : false;
124
+        if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
125
+                    return (isset($this->request['path']['ajax']) && $this->request['path']['ajax'] == true) ? true : false;
126
+        }
118 127
         $method = (isset($this->router->route->getDetail()['path']['method'])) ? $this->router->route->getDetail()['path']['method'] : ['GET'];
119 128
         return (in_array($this->router->route->getMethod(), $method)) ? true : false;
120 129
     }
@@ -140,13 +149,16 @@  discard block
 block discarded – undo
140 149
     {
141 150
         if (!$this->router->route->hasTarget() && strpos($this->router->route->getCallback(), '@') !== false) {
142 151
             $routes = explode('@', $this->router->route->getCallback());
143
-            if (!isset($routes[1])) $routes[1] = 'index';
152
+            if (!isset($routes[1])) {
153
+                $routes[1] = 'index';
154
+            }
144 155
             $index = isset($this->request['index']) ? $this->request['index'] : 0;
145 156
             $class = (class_exists($routes[0]))
146 157
                 ? $routes[0]
147 158
                 : $this->router->collection->getRoutes()['namespace_'.$index].$routes[0];
148
-            if (!class_exists($class))
149
-                throw new \Exception('Class "' . $class . '." is not found');
159
+            if (!class_exists($class)) {
160
+                            throw new \Exception('Class "' . $class . '." is not found');
161
+            }
150 162
             if (method_exists($class, $routes[1])) {
151 163
                 $this->router->route->setTarget(['dispatcher' => 'JetFire\Routing\Dispatcher\MvcDispatcher', 'controller' => $class, 'action' => $routes[1]]);
152 164
                 return true;
Please login to merge, or discard this patch.
src/Routing/Route.php 3 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     }
77 77
 
78 78
     /**
79
-     * @param $url
79
+     * @param string $url
80 80
      */
81 81
     public function setUrl($url)
82 82
     {
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
     }
117 117
 
118 118
     /**
119
-     * @param null $key
119
+     * @param string $key
120 120
      * @return int
121 121
      */
122 122
     public function getResponse($key = null)
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
     }
140 140
 
141 141
     /**
142
-     * @return array
142
+     * @return string
143 143
      */
144 144
     public function getMethod()
145 145
     {
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     }
164 164
 
165 165
     /**
166
-     * @param $key
166
+     * @param string $key
167 167
      * @param $value
168 168
      */
169 169
     public function addDetail($key, $value)
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
     }
173 173
 
174 174
     /**
175
-     * @param null $key
175
+     * @param string $key
176 176
      * @return array|null
177 177
      */
178 178
     public function getTarget($key = null)
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -205,8 +205,8 @@
 block discarded – undo
205 205
     /**
206 206
      * @return array
207 207
      */
208
-    public function getData(){
209
-        return (isset($this->getDetail()['data']) && is_array($this->getDetail()['data']))?$this->getDetail()['data']:[];
208
+    public function getData() {
209
+        return (isset($this->getDetail()['data']) && is_array($this->getDetail()['data'])) ? $this->getDetail()['data'] : [];
210 210
     }
211 211
 
212 212
     /**
Please login to merge, or discard this patch.
Braces   +29 added lines, -15 removed lines patch added patch discarded remove patch
@@ -60,11 +60,21 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function set($args = [])
62 62
     {
63
-        if (isset($args['name'])) $this->name = $args['name'];
64
-        if (isset($args['callback'])) $this->callback = $args['callback'];
65
-        if (isset($args['code'])) $this->response['code'] = $args['code'];
66
-        if (isset($args['target'])) $this->target = $args['target'];
67
-        if (isset($args['detail'])) $this->detail = $args['detail'];
63
+        if (isset($args['name'])) {
64
+            $this->name = $args['name'];
65
+        }
66
+        if (isset($args['callback'])) {
67
+            $this->callback = $args['callback'];
68
+        }
69
+        if (isset($args['code'])) {
70
+            $this->response['code'] = $args['code'];
71
+        }
72
+        if (isset($args['target'])) {
73
+            $this->target = $args['target'];
74
+        }
75
+        if (isset($args['detail'])) {
76
+            $this->detail = $args['detail'];
77
+        }
68 78
     }
69 79
 
70 80
     /**
@@ -121,8 +131,9 @@  discard block
 block discarded – undo
121 131
      */
122 132
     public function getResponse($key = null)
123 133
     {
124
-        if (!is_null($key) && isset($this->response[$key]))
125
-            return $this->response[$key];
134
+        if (!is_null($key) && isset($this->response[$key])) {
135
+                    return $this->response[$key];
136
+        }
126 137
         return $this->response;
127 138
     }
128 139
 
@@ -132,10 +143,11 @@  discard block
 block discarded – undo
132 143
      */
133 144
     public function setResponse($key = null, $value = null)
134 145
     {
135
-        if (!is_null($key) && !is_null($value))
136
-            $this->response[$key] = $value;
137
-        else
138
-            $this->response = array_merge($this->response, $key);
146
+        if (!is_null($key) && !is_null($value)) {
147
+                    $this->response[$key] = $value;
148
+        } else {
149
+                    $this->response = array_merge($this->response, $key);
150
+        }
139 151
     }
140 152
 
141 153
     /**
@@ -177,8 +189,9 @@  discard block
 block discarded – undo
177 189
      */
178 190
     public function getTarget($key = null)
179 191
     {
180
-        if (!is_null($key))
181
-            return isset($this->target[$key]) ? $this->target[$key] : '';
192
+        if (!is_null($key)) {
193
+                    return isset($this->target[$key]) ? $this->target[$key] : '';
194
+        }
182 195
         return empty($this->target) ? '' : $this->target;
183 196
     }
184 197
 
@@ -197,8 +210,9 @@  discard block
 block discarded – undo
197 210
      */
198 211
     public function hasTarget($key = null)
199 212
     {
200
-        if (!is_null($key))
201
-            return isset($this->target[$key]) ? true : false;
213
+        if (!is_null($key)) {
214
+                    return isset($this->target[$key]) ? true : false;
215
+        }
202 216
         return empty($this->target) ? false : true;
203 217
     }
204 218
 
Please login to merge, or discard this patch.
src/Routing/Dispatcher/FunctionDispatcher.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,9 @@
 block discarded – undo
30 30
      */
31 31
     public function call()
32 32
     {
33
-        if ($this->router->route->getResponse('code') == 202) $this->router->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']);
33
+        if ($this->router->route->getResponse('code') == 202) {
34
+            $this->router->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']);
35
+        }
34 36
         $params = ($this->router->route->getParameters() == '') ? [] : $this->router->route->getParameters();
35 37
         echo call_user_func_array($this->router->route->getTarget('closure'), $params);
36 38
     }
Please login to merge, or discard this patch.
src/Routing/Dispatcher/TemplateDispatcher.php 1 patch
Braces   +8 added lines, -6 removed lines patch added patch discarded remove patch
@@ -30,10 +30,11 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function call()
32 32
     {
33
-        if ($this->router->route->getResponse('code') == 202)
34
-            switch ($this->router->route->getTarget('extension')) {
33
+        if ($this->router->route->getResponse('code') == 202) {
34
+                    switch ($this->router->route->getTarget('extension')) {
35 35
                 case 'json':
36 36
                     $this->router->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'application/json']);
37
+        }
37 38
                     header('Content-Type: application/json');
38 39
                     break;
39 40
                 case 'xml':
@@ -44,10 +45,11 @@  discard block
 block discarded – undo
44 45
                     $this->router->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']);
45 46
                     break;
46 47
             }
47
-        if (isset($this->router->getConfig()['viewCallback'][$this->router->route->getTarget('extension')]))
48
-            call_user_func_array($this->router->getConfig()['viewCallback'][$this->router->route->getTarget('extension')], [$this->router->route]);
49
-        else
50
-            require($this->router->route->getTarget('template'));
48
+        if (isset($this->router->getConfig()['viewCallback'][$this->router->route->getTarget('extension')])) {
49
+                    call_user_func_array($this->router->getConfig()['viewCallback'][$this->router->route->getTarget('extension')], [$this->router->route]);
50
+        } else {
51
+                    require($this->router->route->getTarget('template'));
52
+        }
51 53
     }
52 54
 
53 55
 } 
54 56
\ No newline at end of file
Please login to merge, or discard this patch.
src/Routing/Match/SmartMatch.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
     {
44 44
         foreach ($this->router->getConfig()['viewExtension'] as $extension) {
45 45
             for ($i = 0; $i < $this->router->collection->countRoutes; ++$i) {
46
-                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '',$this->router->route->getUrl()));
46
+                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '', $this->router->route->getUrl()));
47 47
                 $end = array_pop($url);
48
-                $url = implode('/', array_map('ucwords', $url)).'/'.$end;
48
+                $url = implode('/', array_map('ucwords', $url)) . '/' . $end;
49 49
                 if (is_file(($template = rtrim($this->router->collection->getRoutes('path_' . $i), '/') . $url . $extension))) {
50 50
                     $this->router->route->setTarget(['dispatcher' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', 'template' => $template, 'extension' => str_replace('.', '', $extension)]);
51 51
                     $this->router->route->addDetail('block', $this->router->collection->getRoutes('path_' . $i));
@@ -63,12 +63,12 @@  discard block
 block discarded – undo
63 63
     {
64 64
         $routes = array_slice(explode('/', $this->router->route->getUrl()), 1);
65 65
         $i = 0;
66
-        do{
67
-            $route =  ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i))
66
+        do {
67
+            $route = ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i))
68 68
                 ? array_slice($routes, 1) : $routes;
69 69
             if (isset($route[0])) {
70
-                $class =  (class_exists($this->router->collection->getRoutes('namespace_' . $i). ucfirst($route[0]) . 'Controller'))
71
-                    ? $this->router->collection->getRoutes('namespace_' . $i). ucfirst($route[0]) . 'Controller'
70
+                $class = (class_exists($this->router->collection->getRoutes('namespace_' . $i) . ucfirst($route[0]) . 'Controller'))
71
+                    ? $this->router->collection->getRoutes('namespace_' . $i) . ucfirst($route[0]) . 'Controller'
72 72
                     : ucfirst($route[0]) . 'Controller';
73 73
                 if (isset($route[1]) && method_exists($class, $route[1])) {
74 74
                     $this->router->route->setTarget(['dispatcher' => 'JetFire\Routing\Dispatcher\MvcDispatcher', 'controller' => $class, 'action' => $route[1]]);
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
                 }
78 78
             }
79 79
             ++$i;
80
-        }while($i < $this->router->collection->countRoutes);
80
+        }while ($i < $this->router->collection->countRoutes);
81 81
         return false;
82 82
     }
83 83
 
Please login to merge, or discard this patch.
src/Routing/Middleware.php 1 patch
Braces   +21 added lines, -10 removed lines patch added patch discarded remove patch
@@ -28,11 +28,14 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function globalMiddleware()
30 30
     {
31
-        if (isset($this->router->collection->middleware['global_middleware']))
32
-            foreach ($this->router->collection->middleware['global_middleware'] as $mid) {
31
+        if (isset($this->router->collection->middleware['global_middleware'])) {
32
+                    foreach ($this->router->collection->middleware['global_middleware'] as $mid) {
33 33
                 if (class_exists($mid)) {
34 34
                     $mid_global = new $mid;
35
-                    if (method_exists($mid_global, 'handle')) $mid_global->handle($this->router->route);
35
+        }
36
+                    if (method_exists($mid_global, 'handle')) {
37
+                        $mid_global->handle($this->router->route);
38
+                    }
36 39
                 }
37 40
             }
38 41
     }
@@ -42,11 +45,14 @@  discard block
 block discarded – undo
42 45
      */
43 46
     public function blockMiddleware()
44 47
     {
45
-        if (isset($this->router->collection->middleware['block_middleware']))
46
-            if (isset($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]) && class_exists($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()])) {
48
+        if (isset($this->router->collection->middleware['block_middleware'])) {
49
+                    if (isset($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]) && class_exists($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()])) {
47 50
                 $class = $this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()];
51
+        }
48 52
                 $mid_block = new $class;
49
-                if (method_exists($mid_block, 'handle')) $mid_block->handle($this->router->route);
53
+                if (method_exists($mid_block, 'handle')) {
54
+                    $mid_block->handle($this->router->route);
55
+                }
50 56
             }
51 57
     }
52 58
 
@@ -60,7 +66,9 @@  discard block
 block discarded – undo
60 66
             if (isset($this->router->collection->middleware['class_middleware'][$ctrl]) && class_exists($this->router->route->getTarget('controller'))) {
61 67
                 $class = $this->router->collection->middleware['class_middleware'][$ctrl];
62 68
                 $mid_class = new $class;
63
-                if (method_exists($mid_class, 'handle')) $mid_class->handle($this->router->route);
69
+                if (method_exists($mid_class, 'handle')) {
70
+                    $mid_class->handle($this->router->route);
71
+                }
64 72
             }
65 73
         }
66 74
     }
@@ -70,11 +78,14 @@  discard block
 block discarded – undo
70 78
      */
71 79
     public function routeMiddleware()
72 80
     {
73
-        if (isset($this->router->collection->middleware['route_middleware']))
74
-            if (isset($this->router->route->getPath()['middleware']) && class_exists($this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']])) {
81
+        if (isset($this->router->collection->middleware['route_middleware'])) {
82
+                    if (isset($this->router->route->getPath()['middleware']) && class_exists($this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']])) {
75 83
                 $class = $this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']];
84
+        }
76 85
                 $mid_route = new $class;
77
-                if (method_exists($mid_route, 'handle')) $mid_route->handle($this->router->route);
86
+                if (method_exists($mid_route, 'handle')) {
87
+                    $mid_route->handle($this->router->route);
88
+                }
78 89
             }
79 90
     }
80 91
 
Please login to merge, or discard this patch.
src/Routing/RouteCollection.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function addRoutes($routes = null, $options = [])
44 44
     {
45
-        if(!is_null($routes) && !is_array($routes)) {
45
+        if (!is_null($routes) && !is_array($routes)) {
46 46
             if (strpos($routes, '.php') === false) $routes = trim($routes, '/') . '/';
47 47
             if (is_file($routes . '/routes.php') && is_array($routesFile = include $routes . '/routes.php')) $routes = $routesFile;
48 48
             elseif (is_file($routes) && is_array($routesFile = include $routes)) $routes = $routesFile;
49
-            else throw new \InvalidArgumentException('Argument for "' . get_called_class() . '" constructor is not recognized. Expected argument array or file containing array but "'.$routes.'" given');
49
+            else throw new \InvalidArgumentException('Argument for "' . get_called_class() . '" constructor is not recognized. Expected argument array or file containing array but "' . $routes . '" given');
50 50
         }
51 51
         $this->routes['routes_' . $this->countRoutes] = is_array($routes) ? $routes : [];
52 52
         $this->routes['path_' . $this->countRoutes] = (isset($options['path']) && !empty($options['path'])) ? rtrim($options['path'], '/') . '/' : '';
@@ -61,8 +61,8 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function getRoutes($key = null)
63 63
     {
64
-        if(!is_null($key))
65
-            return isset($this->routes[$key])?$this->routes[$key]:'';
64
+        if (!is_null($key))
65
+            return isset($this->routes[$key]) ? $this->routes[$key] : '';
66 66
         return $this->routes;
67 67
     }
68 68
 
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         } elseif (is_string($args))
79 79
             for ($i = 0; $i < $this->countRoutes; ++$i)
80 80
                 $this->routes['prefix_' . $i] = '/' . trim($args, '/');
81
-        if($this->countRoutes == 0)$this->countRoutes++;
81
+        if ($this->countRoutes == 0)$this->countRoutes++;
82 82
     }
83 83
 
84 84
     /**
@@ -88,14 +88,14 @@  discard block
 block discarded – undo
88 88
     {
89 89
         $nbrArgs = count($args);
90 90
         for ($i = 0; $i < $nbrArgs; ++$i) {
91
-            if(is_array($args[$i])){
91
+            if (is_array($args[$i])) {
92 92
                 $this->routes['path_' . $i] = (isset($args[$i]['path']) && !empty($args[$i]['path'])) ? rtrim($args[$i]['path'], '/') . '/' : '';
93 93
                 $this->routes['namespace_' . $i] = (isset($args[$i]['namespace']) && !empty($args[$i]['namespace'])) ? trim($args[$i]['namespace'], '\\') . '\\' : '';
94
-                $this->routes['prefix_' . $i] = (isset($args[$i]['prefix']) && !empty($args[$i]['prefix'])) ? '/'.trim($args[$i]['prefix'], '/') : '';
95
-                if(!isset($this->routes['routes_' . $i]))$this->routes['routes_' . $i] = [];
94
+                $this->routes['prefix_' . $i] = (isset($args[$i]['prefix']) && !empty($args[$i]['prefix'])) ? '/' . trim($args[$i]['prefix'], '/') : '';
95
+                if (!isset($this->routes['routes_' . $i]))$this->routes['routes_' . $i] = [];
96 96
             }
97 97
         }
98
-        if($this->countRoutes == 0)$this->countRoutes++;
98
+        if ($this->countRoutes == 0)$this->countRoutes++;
99 99
     }
100 100
 
101 101
     /**
Please login to merge, or discard this patch.
Braces   +57 added lines, -28 removed lines patch added patch discarded remove patch
@@ -33,7 +33,9 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function __construct($routes = null, $options = [])
35 35
     {
36
-        if (!is_null($routes) || !empty($options)) $this->addRoutes($routes, $options);
36
+        if (!is_null($routes) || !empty($options)) {
37
+            $this->addRoutes($routes, $options);
38
+        }
37 39
     }
38 40
 
39 41
     /**
@@ -43,10 +45,16 @@  discard block
 block discarded – undo
43 45
     public function addRoutes($routes = null, $options = [])
44 46
     {
45 47
         if(!is_null($routes) && !is_array($routes)) {
46
-            if (strpos($routes, '.php') === false) $routes = trim($routes, '/') . '/';
47
-            if (is_file($routes . '/routes.php') && is_array($routesFile = include $routes . '/routes.php')) $routes = $routesFile;
48
-            elseif (is_file($routes) && is_array($routesFile = include $routes)) $routes = $routesFile;
49
-            else throw new \InvalidArgumentException('Argument for "' . get_called_class() . '" constructor is not recognized. Expected argument array or file containing array but "'.$routes.'" given');
48
+            if (strpos($routes, '.php') === false) {
49
+                $routes = trim($routes, '/') . '/';
50
+            }
51
+            if (is_file($routes . '/routes.php') && is_array($routesFile = include $routes . '/routes.php')) {
52
+                $routes = $routesFile;
53
+            } elseif (is_file($routes) && is_array($routesFile = include $routes)) {
54
+                $routes = $routesFile;
55
+            } else {
56
+                throw new \InvalidArgumentException('Argument for "' . get_called_class() . '" constructor is not recognized. Expected argument array or file containing array but "'.$routes.'" given');
57
+            }
50 58
         }
51 59
         $this->routes['routes_' . $this->countRoutes] = is_array($routes) ? $routes : [];
52 60
         $this->routes['path_' . $this->countRoutes] = (isset($options['path']) && !empty($options['path'])) ? rtrim($options['path'], '/') . '/' : '';
@@ -61,8 +69,9 @@  discard block
 block discarded – undo
61 69
      */
62 70
     public function getRoutes($key = null)
63 71
     {
64
-        if(!is_null($key))
65
-            return isset($this->routes[$key])?$this->routes[$key]:'';
72
+        if(!is_null($key)) {
73
+                    return isset($this->routes[$key])?$this->routes[$key]:'';
74
+        }
66 75
         return $this->routes;
67 76
     }
68 77
 
@@ -73,12 +82,18 @@  discard block
 block discarded – undo
73 82
     {
74 83
         if (is_array($args)) {
75 84
             $nbrArgs = count($args);
76
-            for ($i = 0; $i < $nbrArgs; ++$i)
77
-                $this->routes['prefix_' . $i] = '/' . trim($args[$i], '/');
78
-        } elseif (is_string($args))
79
-            for ($i = 0; $i < $this->countRoutes; ++$i)
80
-                $this->routes['prefix_' . $i] = '/' . trim($args, '/');
81
-        if($this->countRoutes == 0)$this->countRoutes++;
85
+            for ($i = 0; $i < $nbrArgs; ++$i) {
86
+                            $this->routes['prefix_' . $i] = '/' . trim($args[$i], '/');
87
+            }
88
+        } elseif (is_string($args)) {
89
+                    for ($i = 0;
90
+        }
91
+        $i < $this->countRoutes; ++$i) {
92
+                            $this->routes['prefix_' . $i] = '/' . trim($args, '/');
93
+            }
94
+        if($this->countRoutes == 0) {
95
+            $this->countRoutes++;
96
+        }
82 97
     }
83 98
 
84 99
     /**
@@ -92,10 +107,14 @@  discard block
 block discarded – undo
92 107
                 $this->routes['path_' . $i] = (isset($args[$i]['path']) && !empty($args[$i]['path'])) ? rtrim($args[$i]['path'], '/') . '/' : '';
93 108
                 $this->routes['namespace_' . $i] = (isset($args[$i]['namespace']) && !empty($args[$i]['namespace'])) ? trim($args[$i]['namespace'], '\\') . '\\' : '';
94 109
                 $this->routes['prefix_' . $i] = (isset($args[$i]['prefix']) && !empty($args[$i]['prefix'])) ? '/'.trim($args[$i]['prefix'], '/') : '';
95
-                if(!isset($this->routes['routes_' . $i]))$this->routes['routes_' . $i] = [];
110
+                if(!isset($this->routes['routes_' . $i])) {
111
+                    $this->routes['routes_' . $i] = [];
112
+                }
96 113
             }
97 114
         }
98
-        if($this->countRoutes == 0)$this->countRoutes++;
115
+        if($this->countRoutes == 0) {
116
+            $this->countRoutes++;
117
+        }
99 118
     }
100 119
 
101 120
     /**
@@ -104,12 +123,16 @@  discard block
 block discarded – undo
104 123
      */
105 124
     public function setMiddleware($middleware)
106 125
     {
107
-        if (is_string($middleware)) $middleware = rtrim($middleware, '/');
108
-        if (is_file($middleware) && is_array($mid = include $middleware))
109
-            $this->middleware = $mid;
110
-        elseif (is_array($middleware))
111
-            $this->middleware = $middleware;
112
-        else throw new \InvalidArgumentException('Accepted argument for setMiddleware are array and array file');
126
+        if (is_string($middleware)) {
127
+            $middleware = rtrim($middleware, '/');
128
+        }
129
+        if (is_file($middleware) && is_array($mid = include $middleware)) {
130
+                    $this->middleware = $mid;
131
+        } elseif (is_array($middleware)) {
132
+                    $this->middleware = $middleware;
133
+        } else {
134
+            throw new \InvalidArgumentException('Accepted argument for setMiddleware are array and array file');
135
+        }
113 136
     }
114 137
 
115 138
     /**
@@ -121,12 +144,13 @@  discard block
 block discarded – undo
121 144
         $count = 0;
122 145
         for ($i = 0; $i < $this->countRoutes; ++$i) {
123 146
             $prefix = (isset($this->routes['prefix_' . $i])) ? $this->routes['prefix_' . $i] : '';
124
-            if (isset($this->routes['routes_' . $i]))
125
-                foreach ($this->routes['routes_' . $i] as $route => $dependencies) {
147
+            if (isset($this->routes['routes_' . $i])) {
148
+                            foreach ($this->routes['routes_' . $i] as $route => $dependencies) {
126 149
                     if (is_array($dependencies) && isset($dependencies['use']))
127 150
                         $use = (is_object($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/');
128
-                    else
129
-                        $use = (is_object($dependencies)) ? 'closure-' . $count : trim($dependencies, '/');
151
+            } else {
152
+                                            $use = (is_object($dependencies)) ? 'closure-' . $count : trim($dependencies, '/');
153
+                    }
130 154
                     (!is_object($dependencies) && isset($dependencies['name'])) ? $this->routesByName[$use . '#' . $dependencies['name']] = $root . $prefix . $route : $this->routesByName[$use] = $root . $prefix . $route;
131 155
                     $count++;
132 156
                 }
@@ -143,9 +167,14 @@  discard block
 block discarded – undo
143 167
     {
144 168
         foreach ($this->routesByName as $key => $route) {
145 169
             $param = explode('#', $key);
146
-            foreach ($params as $key2 => $value) $route = str_replace(':' . $key2, $value, $route);
147
-            if ($param[0] == trim($name, '/')) return $route;
148
-            else if (isset($param[1]) && $param[1] == $name) return $route;
170
+            foreach ($params as $key2 => $value) {
171
+                $route = str_replace(':' . $key2, $value, $route);
172
+            }
173
+            if ($param[0] == trim($name, '/')) {
174
+                return $route;
175
+            } else if (isset($param[1]) && $param[1] == $name) {
176
+                return $route;
177
+            }
149 178
         }
150 179
         return null;
151 180
     }
Please login to merge, or discard this patch.
src/Routing/Router.php 1 patch
Braces   +12 added lines, -7 removed lines patch added patch discarded remove patch
@@ -68,7 +68,9 @@  discard block
 block discarded – undo
68 68
     public function run()
69 69
     {
70 70
         $this->setUrl();
71
-        if ($this->config['generateRoutesPath']) $this->collection->generateRoutesPath();
71
+        if ($this->config['generateRoutesPath']) {
72
+            $this->collection->generateRoutesPath();
73
+        }
72 74
         if ($this->match()) {
73 75
             $this->handle();
74 76
             $this->callTarget();
@@ -81,8 +83,9 @@  discard block
 block discarded – undo
81 83
      */
82 84
     public function setUrl($url = null)
83 85
     {
84
-        if (is_null($url))
85
-            $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1);
86
+        if (is_null($url)) {
87
+                    $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1);
88
+        }
86 89
         $this->route->setUrl('/' . trim(explode('?', $url)[0], '/'));
87 90
     }
88 91
 
@@ -93,8 +96,9 @@  discard block
 block discarded – undo
93 96
     {
94 97
         foreach ($this->config['matcher'] as $matcher) {
95 98
             $this->config['matcherInstance'][$matcher] = new $matcher($this);
96
-            if (call_user_func([$this->config['matcherInstance'][$matcher], 'match']))
97
-                return true;
99
+            if (call_user_func([$this->config['matcherInstance'][$matcher], 'match'])) {
100
+                            return true;
101
+            }
98 102
         }
99 103
         return false;
100 104
     }
@@ -137,8 +141,9 @@  discard block
 block discarded – undo
137 141
         if (isset($this->route->getResponse()['templates']) && isset($this->route->getResponse()['templates'][$this->route->getResponse('code')])) {
138 142
             $this->route->setCallback($this->route->getResponse()['templates'][$this->route->getResponse('code')]);
139 143
             $matcher = $this->config['matcherInstance']['JetFire\Routing\Match\RoutesMatch'];
140
-            if (call_user_func([$matcher, 'anonymous']) || call_user_func([$matcher, 'mvc']) || call_user_func([$matcher, 'template']))
141
-                $this->callTarget();
144
+            if (call_user_func([$matcher, 'anonymous']) || call_user_func([$matcher, 'mvc']) || call_user_func([$matcher, 'template'])) {
145
+                            $this->callTarget();
146
+            }
142 147
         }
143 148
         http_response_code($this->route->getResponse('code'));
144 149
     }
Please login to merge, or discard this patch.