Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | trait Serializable |
||
16 | { |
||
17 | /** Default implementation to dynamically serialize all public properties. Can be overridden for increased control. */ |
||
18 | public function toArray(): array |
||
23 | } |
||
24 | |||
25 | /** Recursively serialize Arrayables */ |
||
26 | public function arraySerialize(): array |
||
29 | } |
||
30 | |||
31 | /** @inheritDoc */ |
||
32 | public function jsonSerialize(): array |
||
33 | { |
||
34 | return $this->arraySerialize(); |
||
35 | } |
||
36 | |||
37 | /** @param int $options */ |
||
38 | public function toJson($options = 0): string |
||
41 | } |
||
42 | } |
||
43 |
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