Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | 1 | public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface |
|
27 | { |
||
28 | 1 | return $this->viewRenderer |
|
29 | 1 | ->withViewPath($this->swaggerService->getViewPath()) |
|
30 | 1 | ->renderPartial( |
|
31 | 1 | $this->swaggerService->getViewName(), |
|
32 | [ |
||
33 | 1 | 'jsonUrl' => $this->jsonUrl |
|
34 | ] |
||
46 |