@@ -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( |
@@ -162,7 +162,7 @@ |
||
| 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 | } |
@@ -162,7 +162,7 @@ |
||
| 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 | } |