Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
40 | public function __invoke(Request $request) |
||
41 | { |
||
42 | if (null === $accept = $this->requestManager->getAccept($request)) { |
||
43 | return $this->responseManager->createAcceptNotSupportedResponse($request); |
||
44 | } |
||
45 | |||
46 | return $this->responseManager->createResponse($request, 200, $accept, new Index()); |
||
47 | } |
||
48 | } |
||
49 |