| 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 | 
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths