Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | final class WordFinder |
||
15 | { |
||
16 | private LoggerInterface $logger; |
||
17 | private DictionaryInterface $dictionary; |
||
18 | |||
19 | public function __construct(DictionaryInterface $dictionary, LoggerInterface $logger) |
||
20 | { |
||
21 | $this->logger = $logger; |
||
22 | $this->dictionary = $dictionary; |
||
23 | } |
||
24 | |||
25 | 3 | public function search(WordSearchCriteria $criteria): Word |
|
38 | } |
||
39 | } |
||
41 |
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