| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
||
| 29 | { |
||
| 30 | return new JsonResponse([ |
||
| 31 | 'data' => [ |
||
| 32 | 'resources' => $this->resourceManager->getAllResources(), |
||
| 33 | ], |
||
| 34 | 'success' => true, |
||
| 35 | 'msg' => null, |
||
| 36 | ], 200); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |