| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 4 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 29 | */ |
||
| 30 | public function __call($method, $arguments) |
||
| 31 | { |
||
| 32 | $request = $this |
||
| 33 | ->requestsContainer |
||
| 34 | ->resolveRequestByAction($method); |
||
| 35 | |||
| 36 | return $this->callRequestMethod($request, $method, $arguments); |
||
| 37 | } |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param RequestInterface $request |
||
| 41 | * @param string $method |
||
| 42 | * @param array $arguments |
||
| 43 | * @return mixed |
||
| 55 | } |
According to the PSR-2, the body of a case statement must start on the line immediately following the case statement.
}
To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.