@@ -168,7 +168,7 @@ |
||
| 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 | } |
@@ -81,7 +81,7 @@ discard block |
||
| 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 |
||
| 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( |