Completed
Push — master ( 6202fd...f9a3f2 )
by Sinnarasa
02:36
created
src/Routing/Matcher/ArrayMatcher.php 2 patches
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     /**
26 26
      * @var array
27 27
      */
28
-    private $matcher = ['matchClosureTemplate','matchControllerTemplate','matchTemplate'];
28
+    private $matcher = ['matchClosureTemplate', 'matchControllerTemplate', 'matchTemplate'];
29 29
 
30 30
     /**
31 31
      * @var array
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * @param string $matcher
49 49
      */
50
-    public function addMatcher($matcher){
50
+    public function addMatcher($matcher) {
51 51
         $this->matcher[] = $matcher;
52 52
     }
53 53
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * @param array $dispatcher
64 64
      */
65
-    public function setDispatcher($dispatcher = []){
65
+    public function setDispatcher($dispatcher = []) {
66 66
         $this->dispatcher = $dispatcher;
67 67
     }
68 68
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * @return mixed|void
73 73
      * @internal param array $dispatcher
74 74
      */
75
-    public function addDispatcher($method,$class){
75
+    public function addDispatcher($method, $class) {
76 76
         $this->dispatcher[$method] = $class;
77 77
     }
78 78
 
@@ -133,9 +133,9 @@  discard block
 block discarded – undo
133 133
      */
134 134
     private function generateTarget()
135 135
     {
136
-        if($this->validMethod())
137
-            foreach($this->matcher as $match)
138
-                if (is_array($target = call_user_func_array([$this,$match],[$this->router->route->getCallback()]))) {
136
+        if ($this->validMethod())
137
+            foreach ($this->matcher as $match)
138
+                if (is_array($target = call_user_func_array([$this, $match], [$this->router->route->getCallback()]))) {
139 139
                     $this->setTarget($target);
140 140
                     $this->router->response->setStatusCode(202);
141 141
                     return true;
@@ -147,20 +147,20 @@  discard block
 block discarded – undo
147 147
     /**
148 148
      * @param array $target
149 149
      */
150
-    public function setTarget($target = []){
150
+    public function setTarget($target = []) {
151 151
         $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
152 152
         $this->router->route->setDetail($this->request);
153 153
         $this->router->route->setTarget($target);
154
-        $this->router->route->addTarget('block', $this->router->collection->getRoutes('block_'.$index));
155
-        $this->router->route->addTarget('view_dir', $this->router->collection->getRoutes('view_dir_'.$index));
154
+        $this->router->route->addTarget('block', $this->router->collection->getRoutes('block_' . $index));
155
+        $this->router->route->addTarget('view_dir', $this->router->collection->getRoutes('view_dir_' . $index));
156 156
     }
157 157
 
158 158
     /**
159 159
      *
160 160
      */
161
-    private function setCallback(){
161
+    private function setCallback() {
162 162
         if (isset($this->request['params'])) {
163
-            if(is_callable($this->request['params']))
163
+            if (is_callable($this->request['params']))
164 164
                 $this->router->route->setCallback($this->request['params']);
165 165
             else {
166 166
                 (is_array($this->request['params']) && isset($this->request['params']['use']))
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      */
178 178
     public function validMethod()
179 179
     {
180
-        if(is_callable($this->request['params']))return true;
180
+        if (is_callable($this->request['params']))return true;
181 181
         if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')
182 182
             return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false;
183 183
         $method = (isset($this->request['params']['method'])) ? $this->request['params']['method'] : ['GET'];
@@ -189,10 +189,10 @@  discard block
 block discarded – undo
189 189
      * @return array|bool
190 190
      * @throws \Exception
191 191
      */
192
-    public function matchClosureTemplate($callback){
193
-        if(is_array($cls = $this->matchClosure($callback))) {
192
+    public function matchClosureTemplate($callback) {
193
+        if (is_array($cls = $this->matchClosure($callback))) {
194 194
             if (is_array($this->request['params']) && isset($this->request['params']['template']) && is_array($tpl = $this->matchTemplate($this->request['params']['template']))) {
195
-                return array_merge(array_merge($cls, $tpl),[
195
+                return array_merge(array_merge($cls, $tpl), [
196 196
                     'dispatcher' => [$this->dispatcher['matchClosure'], $this->dispatcher['matchTemplate']]
197 197
                 ]);
198 198
             }
@@ -206,10 +206,10 @@  discard block
 block discarded – undo
206 206
      * @return array|bool
207 207
      * @throws \Exception
208 208
      */
209
-    public function matchControllerTemplate($callback){
210
-        if(is_array($ctrl = $this->matchController($callback))) {
209
+    public function matchControllerTemplate($callback) {
210
+        if (is_array($ctrl = $this->matchController($callback))) {
211 211
             if (is_array($this->request['params']) && isset($this->request['params']['template']) && is_array($tpl = $this->matchTemplate($this->request['params']['template']))) {
212
-                return array_merge(array_merge($ctrl, $tpl),[
212
+                return array_merge(array_merge($ctrl, $tpl), [
213 213
                     'dispatcher' => [$this->dispatcher['matchController'], $this->dispatcher['matchTemplate']]
214 214
                 ]);
215 215
             }
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
             $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
248 248
             $class = (class_exists($routes[0]))
249 249
                 ? $routes[0]
250
-                : $this->router->collection->getRoutes()['ctrl_namespace_'.$index].$routes[0];
250
+                : $this->router->collection->getRoutes()['ctrl_namespace_' . $index] . $routes[0];
251 251
             if (!class_exists($class))
252 252
                 throw new \Exception('Class "' . $class . '." is not found');
253 253
             if (method_exists($class, $routes[1])) {
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
      */
271 271
     public function matchTemplate($callback)
272 272
     {
273
-        if(is_string($callback)) {
273
+        if (is_string($callback)) {
274 274
             $path = trim($callback, '/');
275 275
             $extension = substr(strrchr($path, "."), 1);
276 276
             $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
                     }
288 288
                 }
289 289
             }
290
-            if(is_null($target))
290
+            if (is_null($target))
291 291
                 throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"');
292 292
             return [
293 293
                 'dispatcher' => $this->dispatcher['matchTemplate'],
Please login to merge, or discard this patch.
Braces   +34 added lines, -21 removed lines patch added patch discarded remove patch
@@ -118,8 +118,9 @@  discard block
 block discarded – undo
118 118
     {
119 119
         if (substr($this->request['route'], -1) == '*') {
120 120
             $pos = strpos($this->request['route'], '*');
121
-            if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos) && isset($this->request['params']))
122
-                return true;
121
+            if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos) && isset($this->request['params'])) {
122
+                            return true;
123
+            }
123 124
         }
124 125
         if (preg_match($regex, $this->router->route->getUrl(), $this->request['parameters'])) {
125 126
             array_shift($this->request['parameters']);
@@ -133,10 +134,11 @@  discard block
 block discarded – undo
133 134
      */
134 135
     private function generateTarget()
135 136
     {
136
-        if($this->validMethod())
137
-            foreach($this->matcher as $match)
137
+        if($this->validMethod()) {
138
+                    foreach($this->matcher as $match)
138 139
                 if (is_array($target = call_user_func_array([$this,$match],[$this->router->route->getCallback()]))) {
139
-                    $this->setTarget($target);
140
+                    $this->setTarget($target);
141
+        }
140 142
                     $this->router->response->setStatusCode(202);
141 143
                     return true;
142 144
                 }
@@ -160,14 +162,18 @@  discard block
 block discarded – undo
160 162
      */
161 163
     private function setCallback(){
162 164
         if (isset($this->request['params'])) {
163
-            if(is_callable($this->request['params']))
164
-                $this->router->route->setCallback($this->request['params']);
165
-            else {
165
+            if(is_callable($this->request['params'])) {
166
+                            $this->router->route->setCallback($this->request['params']);
167
+            } else {
166 168
                 (is_array($this->request['params']) && isset($this->request['params']['use']))
167 169
                     ? $this->router->route->setCallback($this->request['params']['use'])
168 170
                     : $this->router->route->setCallback($this->request['params']);
169
-                if (isset($this->request['params']['name'])) $this->router->route->setName($this->request['params']['name']);
170
-                if (isset($this->request['params']['method'])) $this->request['params']['method'] = is_array($this->request['params']['method']) ? $this->request['params']['method'] : [$this->request['params']['method']];
171
+                if (isset($this->request['params']['name'])) {
172
+                    $this->router->route->setName($this->request['params']['name']);
173
+                }
174
+                if (isset($this->request['params']['method'])) {
175
+                    $this->request['params']['method'] = is_array($this->request['params']['method']) ? $this->request['params']['method'] : [$this->request['params']['method']];
176
+                }
171 177
             }
172 178
         }
173 179
     }
@@ -177,9 +183,12 @@  discard block
 block discarded – undo
177 183
      */
178 184
     public function validMethod()
179 185
     {
180
-        if(is_callable($this->request['params']))return true;
181
-        if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')
182
-            return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false;
186
+        if(is_callable($this->request['params'])) {
187
+            return true;
188
+        }
189
+        if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
190
+                    return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false;
191
+        }
183 192
         $method = (isset($this->request['params']['method'])) ? $this->request['params']['method'] : ['GET'];
184 193
         return (in_array($this->router->route->getMethod(), $method)) ? true : false;
185 194
     }
@@ -243,13 +252,16 @@  discard block
 block discarded – undo
243 252
     {
244 253
         if (is_string($callback) && strpos($callback, '@') !== false) {
245 254
             $routes = explode('@', $callback);
246
-            if (!isset($routes[1])) $routes[1] = 'index';
255
+            if (!isset($routes[1])) {
256
+                $routes[1] = 'index';
257
+            }
247 258
             $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
248 259
             $class = (class_exists($routes[0]))
249 260
                 ? $routes[0]
250 261
                 : $this->router->collection->getRoutes()['ctrl_namespace_'.$index].$routes[0];
251
-            if (!class_exists($class))
252
-                throw new \Exception('Class "' . $class . '." is not found');
262
+            if (!class_exists($class)) {
263
+                            throw new \Exception('Class "' . $class . '." is not found');
264
+            }
253 265
             if (method_exists($class, $routes[1])) {
254 266
                 return [
255 267
                     'dispatcher' => $this->dispatcher['matchController'],
@@ -276,9 +288,9 @@  discard block
 block discarded – undo
276 288
             $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
277 289
             $viewDir = $this->router->collection->getRoutes('view_dir_' . $index);
278 290
             $target = null;
279
-            if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir . $path) || is_file($fullPath = $path)))
280
-                $target = $fullPath;
281
-            else {
291
+            if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir . $path) || is_file($fullPath = $path))) {
292
+                            $target = $fullPath;
293
+            } else {
282 294
                 foreach ($this->router->getConfig()['templateExtension'] as $ext) {
283 295
                     if (is_file($fullPath = $viewDir . $path . $ext) || is_file($fullPath = $path . $ext)) {
284 296
                         $target = $fullPath;
@@ -287,8 +299,9 @@  discard block
 block discarded – undo
287 299
                     }
288 300
                 }
289 301
             }
290
-            if(is_null($target))
291
-                throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"');
302
+            if(is_null($target)) {
303
+                            throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"');
304
+            }
292 305
             return [
293 306
                 'dispatcher' => $this->dispatcher['matchTemplate'],
294 307
                 'template'   => $target,
Please login to merge, or discard this patch.
src/Routing/Matcher/UriMatcher.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     /**
46 46
      * @param string $matcher
47 47
      */
48
-    public function addMatcher($matcher){
48
+    public function addMatcher($matcher) {
49 49
         $this->matcher[] = $matcher;
50 50
     }
51 51
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * @param $class
71 71
      * @return mixed|void
72 72
      */
73
-    public function addDispatcher($method,$class){
73
+    public function addDispatcher($method, $class) {
74 74
         $this->dispatcher[$method] = $class;
75 75
     }
76 76
 
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
      */
80 80
     public function match()
81 81
     {
82
-        foreach($this->matcher as $matcher){
83
-            if(is_array($target = call_user_func([$this,$matcher]))) {
82
+        foreach ($this->matcher as $matcher) {
83
+            if (is_array($target = call_user_func([$this, $matcher]))) {
84 84
                 $this->setTarget($target);
85 85
                 $this->router->response->setStatusCode(202);
86 86
                 return true;
@@ -92,21 +92,21 @@  discard block
 block discarded – undo
92 92
     /**
93 93
      * @param array $target
94 94
      */
95
-    public function setTarget($target = []){
95
+    public function setTarget($target = []) {
96 96
         $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
97 97
         $this->router->route->setDetail($this->request);
98 98
         $this->router->route->setTarget($target);
99
-        $this->router->route->addTarget('block', $this->router->collection->getRoutes('block_'.$index));
100
-        $this->router->route->addTarget('view_dir', $this->router->collection->getRoutes('view_dir_'.$index));
99
+        $this->router->route->addTarget('block', $this->router->collection->getRoutes('block_' . $index));
100
+        $this->router->route->addTarget('view_dir', $this->router->collection->getRoutes('view_dir_' . $index));
101 101
     }
102 102
 
103 103
     /**
104 104
      * @return array|bool
105 105
      */
106
-    public function matchControllerTemplate(){
107
-        if(is_array($ctrl = $this->matchController())) {
106
+    public function matchControllerTemplate() {
107
+        if (is_array($ctrl = $this->matchController())) {
108 108
             if (is_array($tpl = $this->matchTemplate())) {
109
-                return array_merge(array_merge($ctrl, $tpl),[
109
+                return array_merge(array_merge($ctrl, $tpl), [
110 110
                     'dispatcher' => [$this->dispatcher['matchController'], $this->dispatcher['matchTemplate']]
111 111
                 ]);
112 112
             }
@@ -122,9 +122,9 @@  discard block
 block discarded – undo
122 122
     {
123 123
         foreach ($this->router->getConfig()['templateExtension'] as $extension) {
124 124
             for ($i = 0; $i < $this->router->collection->countRoutes; ++$i) {
125
-                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '',$this->router->route->getUrl()));
125
+                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '', $this->router->route->getUrl()));
126 126
                 $end = array_pop($url);
127
-                $url = implode('/', array_map('ucwords', $url)).'/'.$end;
127
+                $url = implode('/', array_map('ucwords', $url)) . '/' . $end;
128 128
                 if (is_file(($template = rtrim($this->router->collection->getRoutes('view_dir_' . $i), '/') . $url . $extension))) {
129 129
                     $this->request['collection_index'] = $i;
130 130
                     return [
@@ -146,13 +146,13 @@  discard block
 block discarded – undo
146 146
     {
147 147
         $routes = array_slice(explode('/', $this->router->route->getUrl()), 1);
148 148
         $i = 0;
149
-        do{
150
-            $route =  ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) ? array_slice($routes, 1) : $routes;
149
+        do {
150
+            $route = ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) ? array_slice($routes, 1) : $routes;
151 151
             if (isset($route[0])) {
152
-                $class =  (class_exists($this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller'))
153
-                    ? $this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller'
152
+                $class = (class_exists($this->router->collection->getRoutes('ctrl_namespace_' . $i) . ucfirst($route[0]) . 'Controller'))
153
+                    ? $this->router->collection->getRoutes('ctrl_namespace_' . $i) . ucfirst($route[0]) . 'Controller'
154 154
                     : ucfirst($route[0]) . 'Controller';
155
-                $route[1] = isset($route[1])?$route[1]:'index';
155
+                $route[1] = isset($route[1]) ? $route[1] : 'index';
156 156
                 if (method_exists($class, $route[1])) {
157 157
                     $this->request['parameters'] = array_slice($route, 2);
158 158
                     $this->request['collection_index'] = $i;
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
                 }
166 166
             }
167 167
             ++$i;
168
-        }while($i < $this->router->collection->countRoutes);
168
+        }while ($i < $this->router->collection->countRoutes);
169 169
         return false;
170 170
     }
171 171
 
Please login to merge, or discard this patch.
src/Routing/Dispatcher/ControllerDispatcher.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @param Route $route
29 29
      */
30
-    public function __construct(Route $route,ResponseInterface $response)
30
+    public function __construct(Route $route, ResponseInterface $response)
31 31
     {
32 32
         $this->route = $route;
33 33
         $this->response = $response;
@@ -44,12 +44,12 @@  discard block
 block discarded – undo
44 44
         $dependencies = [];
45 45
         foreach ($reflectionMethod->getParameters() as $arg)
46 46
             if (!is_null($arg->getClass()))
47
-                $dependencies[] = call_user_func_array($this->route->getTarget('di'),[$arg->getClass()->name]);
48
-        $dependencies = array_merge($dependencies,($this->route->getParameters() == '') ? [] : $this->route->getParameters());
47
+                $dependencies[] = call_user_func_array($this->route->getTarget('di'), [$arg->getClass()->name]);
48
+        $dependencies = array_merge($dependencies, ($this->route->getParameters() == '') ? [] : $this->route->getParameters());
49 49
         if ($this->response->getStatusCode() == 202)
50 50
             $this->response->setStatusCode(200);
51
-        if(is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data',$content);
52
-        elseif(!is_null($content))$this->response->setContent($content);
51
+        if (is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data', $content);
52
+        elseif (!is_null($content))$this->response->setContent($content);
53 53
     }
54 54
 
55 55
 
@@ -65,13 +65,13 @@  discard block
 block discarded – undo
65 65
         $constructor = $reflector->getConstructor();
66 66
         if (is_null($constructor)) {
67 67
             $class = $this->route->getTarget('controller');
68
-            return call_user_func_array($this->route->getTarget('di'),[$class]);
68
+            return call_user_func_array($this->route->getTarget('di'), [$class]);
69 69
         }
70 70
         $dependencies = $constructor->getParameters();
71 71
         $arguments = [];
72 72
         foreach ($dependencies as $dep) {
73 73
             $class = $dep->getClass()->name;
74
-            array_push($arguments, call_user_func_array($this->route->getTarget('di'),[$class]));
74
+            array_push($arguments, call_user_func_array($this->route->getTarget('di'), [$class]));
75 75
         }
76 76
         return $reflector->newInstanceArgs($arguments);
77 77
     }
Please login to merge, or discard this patch.
Braces   +15 added lines, -9 removed lines patch added patch discarded remove patch
@@ -42,14 +42,19 @@  discard block
 block discarded – undo
42 42
     {
43 43
         $reflectionMethod = new ReflectionMethod($this->route->getTarget('controller'), $this->route->getTarget('action'));
44 44
         $dependencies = [];
45
-        foreach ($reflectionMethod->getParameters() as $arg)
46
-            if (!is_null($arg->getClass()))
47
-                $dependencies[] = call_user_func_array($this->route->getTarget('di'),[$arg->getClass()->name]);
45
+        foreach ($reflectionMethod->getParameters() as $arg) {
46
+                    if (!is_null($arg->getClass()))
47
+                $dependencies[] = call_user_func_array($this->route->getTarget('di'),[$arg->getClass()->name]);
48
+        }
48 49
         $dependencies = array_merge($dependencies,($this->route->getParameters() == '') ? [] : $this->route->getParameters());
49
-        if ($this->response->getStatusCode() == 202)
50
-            $this->response->setStatusCode(200);
51
-        if(is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data',$content);
52
-        elseif(!is_null($content))$this->response->setContent($content);
50
+        if ($this->response->getStatusCode() == 202) {
51
+                    $this->response->setStatusCode(200);
52
+        }
53
+        if(is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) {
54
+            $this->route->addTarget('data',$content);
55
+        } elseif(!is_null($content)) {
56
+            $this->response->setContent($content);
57
+        }
53 58
     }
54 59
 
55 60
 
@@ -60,8 +65,9 @@  discard block
 block discarded – undo
60 65
     private function getController()
61 66
     {
62 67
         $reflector = new ReflectionClass($this->route->getTarget('controller'));
63
-        if (!$reflector->isInstantiable())
64
-            throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.');
68
+        if (!$reflector->isInstantiable()) {
69
+                    throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.');
70
+        }
65 71
         $constructor = $reflector->getConstructor();
66 72
         if (is_null($constructor)) {
67 73
             $class = $this->route->getTarget('controller');
Please login to merge, or discard this patch.
src/Routing/Dispatcher/ClosureDispatcher.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     /**
26 26
      * @param Route $route
27 27
      */
28
-    public function __construct(Route $route,ResponseInterface $response)
28
+    public function __construct(Route $route, ResponseInterface $response)
29 29
     {
30 30
         $this->route = $route;
31 31
         $this->response = $response;
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
             $this->response->setHeaders(['Content-Type' => 'text/html']);
43 43
         }
44 44
         $params = ($this->route->getParameters() == '') ? [] : $this->route->getParameters();
45
-        if(is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data',$content);
46
-        elseif(!is_null($content)) $this->response->setContent($content);
45
+        if (is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data', $content);
46
+        elseif (!is_null($content)) $this->response->setContent($content);
47 47
     }
48 48
 
49 49
 }
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,11 @@
 block discarded – undo
42 42
             $this->response->setHeaders(['Content-Type' => 'text/html']);
43 43
         }
44 44
         $params = ($this->route->getParameters() == '') ? [] : $this->route->getParameters();
45
-        if(is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data',$content);
46
-        elseif(!is_null($content)) $this->response->setContent($content);
45
+        if(is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) {
46
+            $this->route->addTarget('data',$content);
47
+        } elseif(!is_null($content)) {
48
+            $this->response->setContent($content);
49
+        }
47 50
     }
48 51
 
49 52
 }
Please login to merge, or discard this patch.
src/Routing/Dispatcher/TemplateDispatcher.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     /**
37 37
      * @param Route $route
38 38
      */
39
-    public function __construct(Route $route,ResponseInterface $response)
39
+    public function __construct(Route $route, ResponseInterface $response)
40 40
     {
41 41
         $this->route = $route;
42 42
         $this->response = $response;
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
             $this->response->setContent(call_user_func_array($this->route->getTarget('callback')[$this->route->getTarget('extension')], [$this->route]));
54 54
         else {
55 55
             ob_start();
56
-            if(isset($this->route->getTarget()['data']))extract($this->route->getTarget('data'));
56
+            if (isset($this->route->getTarget()['data']))extract($this->route->getTarget('data'));
57 57
             require($this->route->getTarget('template'));
58 58
             $this->response->setContent(ob_get_clean());
59 59
         }
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     /**
63 63
      * @param $extension
64 64
      */
65
-    public function setContentType($extension){
65
+    public function setContentType($extension) {
66 66
         $this->response->setStatusCode(200);
67 67
         isset($this->types[$extension])
68 68
             ? $this->response->setHeaders(['Content-Type' => $this->types[$extension]])
Please login to merge, or discard this patch.
Braces   +9 added lines, -6 removed lines patch added patch discarded remove patch
@@ -47,13 +47,16 @@
 block discarded – undo
47 47
      */
48 48
     public function call()
49 49
     {
50
-        if ($this->response->getStatusCode() == 202)
51
-            $this->setContentType($this->route->getTarget('extension'));
52
-        if (isset($this->route->getTarget('callback')[$this->route->getTarget('extension')]))
53
-            $this->response->setContent(call_user_func_array($this->route->getTarget('callback')[$this->route->getTarget('extension')], [$this->route]));
54
-        else {
50
+        if ($this->response->getStatusCode() == 202) {
51
+                    $this->setContentType($this->route->getTarget('extension'));
52
+        }
53
+        if (isset($this->route->getTarget('callback')[$this->route->getTarget('extension')])) {
54
+                    $this->response->setContent(call_user_func_array($this->route->getTarget('callback')[$this->route->getTarget('extension')], [$this->route]));
55
+        } else {
55 56
             ob_start();
56
-            if(isset($this->route->getTarget()['data']))extract($this->route->getTarget('data'));
57
+            if(isset($this->route->getTarget()['data'])) {
58
+                extract($this->route->getTarget('data'));
59
+            }
57 60
             require($this->route->getTarget('template'));
58 61
             $this->response->setContent(ob_get_clean());
59 62
         }
Please login to merge, or discard this patch.
src/Routing/Router.php 2 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -46,13 +46,13 @@  discard block
 block discarded – undo
46 46
      * @param ResponseInterface $response
47 47
      * @param Route $route
48 48
      */
49
-    public function __construct(RouteCollection $collection,ResponseInterface $response = null,Route $route = null)
49
+    public function __construct(RouteCollection $collection, ResponseInterface $response = null, Route $route = null)
50 50
     {
51 51
         $this->collection = $collection;
52
-        $this->response = is_null($response)? new Response() : $response;
52
+        $this->response = is_null($response) ? new Response() : $response;
53 53
         $this->response->setStatusCode(404);
54
-        $this->route = is_null($route)? new Route() : $route;
55
-        $this->config['di'] = function($class){
54
+        $this->route = is_null($route) ? new Route() : $route;
55
+        $this->config['di'] = function($class) {
56 56
             return new $class;
57 57
         };
58 58
     }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * @param string $matcher
78 78
      */
79
-    public function addMatcher($matcher){
79
+    public function addMatcher($matcher) {
80 80
         $this->config['matcher'][] = $matcher;
81 81
     }
82 82
 
@@ -122,9 +122,9 @@  discard block
 block discarded – undo
122 122
      */
123 123
     public function callTarget()
124 124
     {
125
-        $target = is_array($this->route->getTarget('dispatcher'))?$this->route->getTarget('dispatcher'):[$this->route->getTarget('dispatcher')];
126
-        if(!empty($target)) {
127
-            foreach($target as $call) {
125
+        $target = is_array($this->route->getTarget('dispatcher')) ? $this->route->getTarget('dispatcher') : [$this->route->getTarget('dispatcher')];
126
+        if (!empty($target)) {
127
+            foreach ($target as $call) {
128 128
                 $this->dispatcher = new $call($this->route, $this->response);
129 129
                 call_user_func([$this->dispatcher, 'call']);
130 130
             }
@@ -158,13 +158,13 @@  discard block
 block discarded – undo
158 158
     {
159 159
         if (isset($this->route->getDetail()['response_templates']) && isset($this->route->getDetail()['response_templates'][$code = $this->response->getStatusCode()])) {
160 160
             $this->route->setCallback($this->route->getDetail()['response_templates'][$code]);
161
-            if(!isset($this->config['matcherInstance']))
161
+            if (!isset($this->config['matcherInstance']))
162 162
                 foreach ($this->config['matcher'] as $matcher)
163 163
                     $this->config['matcherInstance'][$matcher] = new $matcher($this);
164
-            foreach($this->config['matcherInstance'] as $instance) {
164
+            foreach ($this->config['matcherInstance'] as $instance) {
165 165
                 foreach (call_user_func([$instance, 'getMatcher']) as $match)
166
-                    if (is_array($target = call_user_func_array([$instance, $match], [$this->route->getCallback()]))){
167
-                        call_user_func_array([$instance, 'setTarget'],[$target]);
166
+                    if (is_array($target = call_user_func_array([$instance, $match], [$this->route->getCallback()]))) {
167
+                        call_user_func_array([$instance, 'setTarget'], [$target]);
168 168
                         $this->callTarget();
169 169
                         break;
170 170
                     }
Please login to merge, or discard this patch.
Braces   +17 added lines, -11 removed lines patch added patch discarded remove patch
@@ -86,7 +86,9 @@  discard block
 block discarded – undo
86 86
     public function run()
87 87
     {
88 88
         $this->setUrl();
89
-        if ($this->config['generateRoutesPath']) $this->collection->generateRoutesPath();
89
+        if ($this->config['generateRoutesPath']) {
90
+            $this->collection->generateRoutesPath();
91
+        }
90 92
         if ($this->match()) {
91 93
             $this->handle();
92 94
             $this->callTarget();
@@ -99,8 +101,9 @@  discard block
 block discarded – undo
99 101
      */
100 102
     public function setUrl($url = null)
101 103
     {
102
-        if (is_null($url))
103
-            $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1);
104
+        if (is_null($url)) {
105
+                    $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1);
106
+        }
104 107
         $this->route->setUrl('/' . trim(explode('?', $url)[0], '/'));
105 108
     }
106 109
 
@@ -111,8 +114,9 @@  discard block
 block discarded – undo
111 114
     {
112 115
         foreach ($this->config['matcher'] as $matcher) {
113 116
             $this->config['matcherInstance'][$matcher] = new $matcher($this);
114
-            if (call_user_func([$this->config['matcherInstance'][$matcher], 'match']))
115
-                return true;
117
+            if (call_user_func([$this->config['matcherInstance'][$matcher], 'match'])) {
118
+                            return true;
119
+            }
116 120
         }
117 121
         return false;
118 122
     }
@@ -158,13 +162,15 @@  discard block
 block discarded – undo
158 162
     {
159 163
         if (isset($this->route->getDetail()['response_templates']) && isset($this->route->getDetail()['response_templates'][$code = $this->response->getStatusCode()])) {
160 164
             $this->route->setCallback($this->route->getDetail()['response_templates'][$code]);
161
-            if(!isset($this->config['matcherInstance']))
162
-                foreach ($this->config['matcher'] as $matcher)
163
-                    $this->config['matcherInstance'][$matcher] = new $matcher($this);
165
+            if(!isset($this->config['matcherInstance'])) {
166
+                            foreach ($this->config['matcher'] as $matcher)
167
+                    $this->config['matcherInstance'][$matcher] = new $matcher($this);
168
+            }
164 169
             foreach($this->config['matcherInstance'] as $instance) {
165
-                foreach (call_user_func([$instance, 'getMatcher']) as $match)
166
-                    if (is_array($target = call_user_func_array([$instance, $match], [$this->route->getCallback()]))){
167
-                        call_user_func_array([$instance, 'setTarget'],[$target]);
170
+                foreach (call_user_func([$instance, 'getMatcher']) as $match) {
171
+                                    if (is_array($target = call_user_func_array([$instance, $match], [$this->route->getCallback()]))){
172
+                        call_user_func_array([$instance, 'setTarget'],[$target]);
173
+                }
168 174
                         $this->callTarget();
169 175
                         break;
170 176
                     }
Please login to merge, or discard this patch.