Passed
Branch master (93b6ae)
by refat
12:48
created
core/System/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
 
160 160
   private function fullMatch($pattern, $methods)
161 161
   {
162
-    return $this->isMatchingPattern($pattern) &&  $this->app->request->isMatchingRequestMethod($methods);
162
+    return $this->isMatchingPattern($pattern) && $this->app->request->isMatchingRequestMethod($methods);
163 163
   }
164 164
 
165 165
   private function isMatchingPattern($pattern)
Please login to merge, or discard this patch.
core/System/Http/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -357,7 +357,7 @@
 block discarded – undo
357 357
       $methods = ['GET'];
358 358
     }
359 359
 
360
-    foreach($methods as $method) {
360
+    foreach ($methods as $method) {
361 361
 
362 362
       if ($this->method() == strtoupper($method)) {
363 363
 
Please login to merge, or discard this patch.