| Total Complexity | 4 | 
| Total Lines | 27 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 13 | final class CommentRepository extends Select\Repository | ||
| 14 | { | ||
| 15 | public function __construct(Select $select) | ||
| 16 |     { | ||
| 17 | parent::__construct($select); | ||
| 18 | } | ||
| 19 | |||
| 20 | /** | ||
| 21 | * @psalm-return DataReaderInterface<int, Comment> | ||
| 22 | */ | ||
| 23 | public function getReader(): DataReaderInterface | ||
| 24 |     { | ||
| 25 | return (new EntityReader($this->select())) | ||
| 26 | ->withSort($this->getSort()); | ||
| 27 | } | ||
| 28 | |||
| 29 | public function getSort(): Sort | ||
| 32 | } | ||
| 33 | |||
| 34 | public function findAll(array $scope = [], array $orderBy = []): DataReaderInterface | ||
| 40 | } | ||
| 41 | } | ||
| 42 | 
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