Total Complexity | 5 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
12 | abstract class Representation implements RepresentationInterface |
||
13 | { |
||
14 | private TypeInterface $type; |
||
15 | |||
16 | public function __construct(private readonly string $sql) |
||
20 | } |
||
21 | } |
||
22 | |||
23 | public function getSql(): string |
||
24 | { |
||
25 | return $this->sql; |
||
26 | } |
||
27 | |||
28 | public function setType(TypeInterface $type): RepresentationInterface |
||
29 | { |
||
30 | $this->type = $type; |
||
31 | |||
32 | return $this; |
||
33 | } |
||
34 | |||
35 | public function getType(): TypeInterface |
||
38 | } |
||
39 | } |
||
40 |
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