Completed
Push — master ( 574385...31b0f1 )
by Ronnie
02:15
created
src/Dispatcher/Regex.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,6 @@
 block discarded – undo
38 38
       return self::NOT_FOUND;
39 39
     }
40 40
 
41
-   return preg_match($routesData[$this->verb], $this->uri) ? self::FOUND : self::NOT_FOUND;
41
+    return preg_match($routesData[$this->verb], $this->uri) ? self::FOUND : self::NOT_FOUND;
42 42
   }
43 43
 }
Please login to merge, or discard this patch.
src/RouteFileParser/Regex.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
    * @param int $index
63 63
    */
64 64
   private function setRouteRegexData(&$routeRegexes, &$routesData, $index) {
65
-     if(isset($routeRegexes[$routesData[$index][self::VERB]]) === false) {
65
+      if(isset($routeRegexes[$routesData[$index][self::VERB]]) === false) {
66 66
         $routeRegexes[$routesData[$index][self::VERB]] = self::REGEX_PREFIX;
67 67
       }
68 68
   }
Please login to merge, or discard this patch.