Total Complexity | 1 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class HttpClientConfig extends DataTransferObject |
||
18 | { |
||
19 | public string $endpoint = 'http://localhost:8529'; |
||
20 | |||
21 | public ?string $host = null; |
||
22 | |||
23 | public string|int|null $port = null; |
||
|
|||
24 | |||
25 | public int|float $version = 1.1; |
||
26 | |||
27 | public string $connection = 'Keep-Alive'; |
||
28 | |||
29 | /** |
||
30 | * @var array<mixed>|false |
||
31 | */ |
||
32 | public $allow_redirects = false; |
||
33 | |||
34 | public float $connect_timeout = 0; |
||
35 | |||
36 | public ?string $username = null; |
||
37 | |||
38 | public ?string $password = null; |
||
39 | |||
40 | public string $database = '_system'; |
||
41 | |||
42 | /** |
||
43 | * @return array<array<mixed>|string|numeric|bool|null> |
||
44 | */ |
||
45 | 104 | public function mapGuzzleHttpClientConfig(): array |
|
63 |
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