| Total Complexity | 3 | 
| Total Lines | 30 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 28 | class UidNode extends Node | ||
| 29 | { | ||
| 30 | private GedcomRecord $record; | ||
| 31 | private String $linkText; | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @param GedcomRecord $record | ||
| 35 | */ | ||
| 36 | public function __construct(GedcomRecord $record, String $linkText) | ||
| 37 |     { | ||
| 38 | parent::__construct(); | ||
| 39 | |||
| 40 | $this->record = $record; | ||
| 41 | $this->linkText = $linkText; | ||
| 42 | } | ||
| 43 | |||
| 44 | /** | ||
| 45 | * @return GedcomRecord | ||
| 46 | */ | ||
| 47 | public function record(): GedcomRecord | ||
| 50 | } | ||
| 51 | |||
| 52 | /** | ||
| 53 | * @return linkTxt | ||
| 54 | */ | ||
| 55 | public function linkText(): String | ||
| 60 | 
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