Completed
Push — master ( 9e8193...ac2fb8 )
by Stas
35:19 queued 25:14
created
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.
lib/Filter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
                 $i++;
163 163
             } while ($callingMethod == "log" && $i < $stackSize);
164 164
 
165
-            $this->logger->info('[' . $callingMethod . '] ' . $msg);
165
+            $this->logger->info('['.$callingMethod.'] '.$msg);
166 166
         }
167 167
     }
168 168
 }
Please login to merge, or discard this patch.
lib/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
                 $i++;
163 163
             } while ($callingMethod == "log" && $i < $stackSize);
164 164
 
165
-            $this->logger->info('[' . $callingMethod . '] ' . $msg);
165
+            $this->logger->info('['.$callingMethod.'] '.$msg);
166 166
         }
167 167
     }
168 168
 }
Please login to merge, or discard this patch.