Total Complexity | 5 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
22 | final class FusePollHandle implements TypedCDataInterface |
||
23 | { |
||
24 | private CData $cdata; |
||
25 | |||
26 | public static function getCTypeName(): string |
||
27 | { |
||
28 | return 'struct fuse_pollhandle *'; |
||
29 | } |
||
30 | |||
31 | public function __construct(CData $cdata) |
||
32 | { |
||
33 | $this->cdata = $cdata; |
||
34 | } |
||
35 | |||
36 | /** @return static */ |
||
37 | public static function fromCData(CData $cdata): TypedCDataInterface |
||
38 | { |
||
39 | return new self($cdata); |
||
40 | } |
||
41 | |||
42 | public function toCData(?CData $cdata): CData |
||
45 | } |
||
46 | |||
47 | public static function newCData(): CData |
||
50 | } |
||
51 | } |
||
52 |
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