Passed
Pull Request — master (#12)
by
unknown
01:35
created
Mezon/Router/Router.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function callRoute($route)
107 107
     {
108
-        if (! $this->regExpsWereCompiled) {
108
+        if (!$this->regExpsWereCompiled) {
109 109
             $this->compileRegexpForBunches();
110 110
         }
111 111
 
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
         if (($result = $this->findDynamicRouteProcessor($route)) !== false) {
121 121
             return $result;
122 122
         }
123
-        if (($result = $this->findStaticRouteProcessor($route,true)) !== false) {
123
+        if (($result = $this->findStaticRouteProcessor($route, true)) !== false) {
124 124
             return $result;
125 125
         }
126 126
         call_user_func($this->invalidRouteErrorHandler, $route);
Please login to merge, or discard this patch.