| Total Complexity | 6 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 38.46% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class DefaultGraph implements iDefaultGraph |
||
| 21 | { |
||
| 22 | private ?string $iri; |
||
| 23 | |||
| 24 | 2 | public function __construct(?string $iri = null) |
|
| 25 | { |
||
| 26 | 2 | if (empty($iri)) { |
|
| 27 | 2 | $iri = NamespaceHelper::BASE_NAMESPACE; |
|
| 28 | } |
||
| 29 | |||
| 30 | 2 | $this->iri = $iri; |
|
| 31 | 2 | } |
|
| 32 | |||
| 33 | public function __toString(): string |
||
| 34 | { |
||
| 35 | return $this->getValue(); |
||
| 36 | } |
||
| 37 | |||
| 38 | public function equals(Term $term): bool |
||
| 41 | } |
||
| 42 | |||
| 43 | public function getType(): string |
||
| 46 | } |
||
| 47 | |||
| 48 | public function getValue(): string |
||
| 51 | } |
||
| 52 | } |
||
| 53 |
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