@@ -14,7 +14,8 @@ |
||
14 | 14 | * |
15 | 15 | * @return ResponseInterface |
16 | 16 | */ |
17 | - public function run() { |
|
17 | + public function run() |
|
18 | + { |
|
18 | 19 | $request = $this->getRequest(); |
19 | 20 | if (!$request) { |
20 | 21 | throw new \RuntimeException("Request object is not set for controller"); |
@@ -40,8 +40,7 @@ |
||
40 | 40 | |
41 | 41 | try { |
42 | 42 | $args = isset($route->args) ? |
43 | - $route->args : |
|
44 | - $this->getFunctionArgs($route, new \ReflectionMethod($this, $method)); |
|
43 | + $route->args : $this->getFunctionArgs($route, new \ReflectionMethod($this, $method)); |
|
45 | 44 | } catch (\RuntimeException $e) { |
46 | 45 | return $this->setResponseError(400, 'Bad Request'); |
47 | 46 | } |