Completed
Push — master ( 1cdb83...3c8287 )
by Siro Díaz
02:46
created
Routify/Router.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -118,12 +118,12 @@  discard block
 block discarded – undo
118 118
         $found = false;
119 119
         $counter = 0;
120 120
 
121
-        if(count($this->routes) === 0) {
121
+        if (count($this->routes) === 0) {
122 122
             return $found;
123 123
         }
124 124
 
125
-        while($found === false && $counter < count($this->routes)) {
126
-            if($this->routes[$counter]->getUri() === $uri && $this->routes[$counter]->getMethod() === $method) {
125
+        while ($found === false && $counter < count($this->routes)) {
126
+            if ($this->routes[$counter]->getUri() === $uri && $this->routes[$counter]->getMethod() === $method) {
127 127
                 $found = true;
128 128
             }
129 129
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
      */
144 144
 
145 145
     private function addRoute($uri, $method, $response, array $middleware = []) {
146
-        if($this->find($uri, $method)) {    // search if exists an apparition
146
+        if ($this->find($uri, $method)) {    // search if exists an apparition
147 147
             return false;
148 148
         }
149 149
 
@@ -159,13 +159,13 @@  discard block
 block discarded – undo
159 159
      */
160 160
     private function getRequestHeaders() {
161 161
         // If getallheaders() is available, use that
162
-        if(function_exists('getallheaders')) {
162
+        if (function_exists('getallheaders')) {
163 163
             return getallheaders();
164 164
         }
165 165
         // Method getallheaders() not available: manually extract 'm
166 166
         $headers = [];
167
-        foreach(filter_input_array(INPUT_SERVER) as $key => $value) {
168
-            if((substr($key, 0, 5) == 'HTTP_') || ($key == 'CONTENT_TYPE') || ($key == 'CONTENT_LENGTH')) {
167
+        foreach (filter_input_array(INPUT_SERVER) as $key => $value) {
168
+            if ((substr($key, 0, 5) == 'HTTP_') || ($key == 'CONTENT_TYPE') || ($key == 'CONTENT_LENGTH')) {
169 169
                 $headers[str_replace([' ', 'Http'], ['-', 'HTTP'], ucwords(strtolower(str_replace('_', ' ', substr($key, 5)))))] = $value;
170 170
             }
171 171
         }
@@ -179,13 +179,13 @@  discard block
 block discarded – undo
179 179
      */
180 180
 
181 181
     private function overrideMethod() {
182
-        if($this->requestMethod === 'HEAD') {
182
+        if ($this->requestMethod === 'HEAD') {
183 183
             $this->requestMethod = 'GET';
184
-        } elseif($this->requestMethod === 'POST' && filter_input(INPUT_POST, '_method') !== null) {
184
+        } elseif ($this->requestMethod === 'POST' && filter_input(INPUT_POST, '_method') !== null) {
185 185
             $this->requestMethod = filter_input(INPUT_POST, '_method');
186
-        } elseif($this->requestMethod === 'POST') {
186
+        } elseif ($this->requestMethod === 'POST') {
187 187
             $headers = $this->getRequestHeaders();
188
-            if(isset($headers['X-HTTP-Method-Override']) && in_array($headers['X-HTTP-Method-Override'], ['PUT', 'DELETE', 'PATCH'])) {
188
+            if (isset($headers['X-HTTP-Method-Override']) && in_array($headers['X-HTTP-Method-Override'], ['PUT', 'DELETE', 'PATCH'])) {
189 189
                 $this->requestMethod = $headers['X-HTTP-Method-Override'];
190 190
             }
191 191
         }
@@ -264,8 +264,8 @@  discard block
 block discarded – undo
264 264
      */
265 265
 
266 266
     public function both($uri, $response, $methods = Method::GET, array $middleware = []) {
267
-        if(is_array($methods)) {
268
-            foreach($methods as $method) {
267
+        if (is_array($methods)) {
268
+            foreach ($methods as $method) {
269 269
                 $this->addRoute($uri, $method, $response, $middleware);
270 270
             }
271 271
         } else {
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
      */
293 293
 
294 294
     public function notFound($func) {
295
-        if(is_callable($func)) {
295
+        if (is_callable($func)) {
296 296
             $this->notFound = $func;
297 297
         }
298 298
     }
@@ -310,17 +310,17 @@  discard block
 block discarded – undo
310 310
     public function run() {
311 311
         $found = false;
312 312
         $counter = 0;
313
-        while($found === false && $counter < count($this->routes)) {
314
-            if($this->routerParser->match($this->routes[$counter]->getUri()) && $this->routes[$counter]->getMethod() === $this->requestMethod) {
313
+        while ($found === false && $counter < count($this->routes)) {
314
+            if ($this->routerParser->match($this->routes[$counter]->getUri()) && $this->routes[$counter]->getMethod() === $this->requestMethod) {
315 315
                 $found = true;
316 316
             } else {
317 317
                 $counter++;
318 318
             }
319 319
         }
320 320
 
321
-        if($found) {
321
+        if ($found) {
322 322
             // run the before middleware if it exists
323
-            if($this->routes[$counter]->hasBefore()) {
323
+            if ($this->routes[$counter]->hasBefore()) {
324 324
                 call_user_func($this->routes[$counter]->getMiddlewares()['before']);
325 325
             }
326 326
 
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
             $response = call_user_func_array($this->routes[$counter]->getResponse(), $params);
329 329
 
330 330
             // run the after middleware if it exists
331
-            if($this->routes[$counter]->hasAfter()) {
331
+            if ($this->routes[$counter]->hasAfter()) {
332 332
                 call_user_func($this->routes[$counter]->getMiddlewares()['after']);
333 333
             }
334 334
 
Please login to merge, or discard this patch.