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