| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | private function noMethod(AbstractRequest $request) : ResourceObject |
||
| 52 | { |
||
| 53 | if ($request->method === Request::OPTIONS) { |
||
| 54 | $ro = $request->resourceObject; |
||
| 55 | $ro->view = $this->optionsRenderer->render($request->resourceObject); |
||
| 56 | |||
| 57 | return $ro; |
||
| 58 | } |
||
| 59 | |||
| 60 | throw new MethodNotAllowedException(get_class($request->resourceObject) . "::{({$request->method}}()", 405); |
||
| 61 | } |
||
| 62 | } |
||
| 63 |