Completed
Push — master ( de946d...8745c6 )
by Stas
08:43
created
lib/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@
 block discarded – undo
168 168
                 $i++;
169 169
             } while ($callingMethod == "log" && $i < $stackSize);
170 170
 
171
-            $this->logger->info('[' . $callingMethod . '] ' . $msg);
171
+            $this->logger->info('['.$callingMethod.'] '.$msg);
172 172
         }
173 173
     }
174 174
 }
Please login to merge, or discard this patch.
lib/Route/Controller.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
             $reflection = new \ReflectionObject($this->controller);
82 82
 
83 83
 
84
-            $method_name = 'handle' . ucfirst($this->action);
84
+            $method_name = 'handle'.ucfirst($this->action);
85 85
             if ($reflection->hasMethod($method_name)) {
86 86
 
87 87
                 $this->reflectionMethod = $reflection->getMethod($method_name);
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 
151 151
         if ($request->isPost()) {
152 152
             // tries to found POST handler
153
-            $method_name = 'post' . $this->action;
153
+            $method_name = 'post'.$this->action;
154 154
             $reflection = new \ReflectionObject($this->controller);
155 155
             if ($reflection->hasMethod($method_name)) {
156 156
                 $post_return = $this->_dispatchMethod(
Please login to merge, or discard this patch.