Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | abstract class ExtendReader |
||
14 | { |
||
15 | use Injector; |
||
16 | |||
17 | /** |
||
18 | * @var Psr\Log\LoggerInterface |
||
19 | */ |
||
20 | protected $logger; |
||
21 | |||
22 | /** |
||
23 | * constructor |
||
24 | */ |
||
25 | 24 | public function __construct() |
|
26 | { |
||
27 | 24 | $this->logger = new class () { public function __call($name, $args) {} }; |
|
28 | } |
||
29 | |||
30 | /** |
||
31 | * アノテーション情報リストを返却する |
||
32 | * @param array<object> アノテーション情報リスト |
||
33 | */ |
||
34 | abstract public function getAnnotationInfo(); |
||
35 | |||
36 | /** |
||
37 | * read event |
||
38 | * @param array<string> アノテーション情報リスト |
||
39 | */ |
||
40 | abstract public function read(array $annotationInfoList); |
||
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