Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function create(PaginatorInterface $paginator): ResponseInterface |
||
21 | { |
||
22 | $response = []; |
||
23 | foreach ($paginator->read() as $post) { |
||
24 | $response[] = new Response( |
||
25 | $post->getId(), |
||
26 | $post->getTitle(), |
||
27 | $post->getContent(), |
||
28 | ); |
||
29 | } |
||
30 | |||
31 | return $this->responseFactory->createResponse([ |
||
32 | 'posts' => $response, |
||
33 | 'paginator' => $this->paginatorFormatter->format($paginator), |
||
34 | ]); |
||
37 |