Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
29 | final class Flock implements TypedCDataInterface |
||
30 | { |
||
31 | use TypedCDataDefaultImplementationTrait; |
||
32 | |||
33 | public int $l_type; |
||
34 | public int $l_whence; |
||
35 | public int $l_start; |
||
36 | public int $l_len; |
||
37 | public int $l_pid; |
||
38 | |||
39 | /** |
||
40 | * Flock constructor. |
||
41 | * @param int $l_type |
||
42 | * @param int $l_whence |
||
43 | * @param int $l_start |
||
44 | * @param int $l_len |
||
45 | * @param int $l_pid |
||
46 | */ |
||
47 | public function __construct( |
||
48 | int $l_type = 0, |
||
49 | int $l_whence = 0, |
||
50 | int $l_start = 0, |
||
51 | int $l_len = 0, |
||
52 | int $l_pid = 0 |
||
53 | ) { |
||
54 | $this->l_type = $l_type; |
||
55 | $this->l_whence = $l_whence; |
||
56 | $this->l_start = $l_start; |
||
57 | $this->l_len = $l_len; |
||
58 | $this->l_pid = $l_pid; |
||
59 | } |
||
60 | |||
61 | public static function getCTypeName(): string |
||
64 | } |
||
65 | } |
||
66 |
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