Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function createWallet() |
||
29 | { |
||
30 | $payload = []; |
||
31 | $wallet = Http::withToken($this->apiKey) |
||
32 | ->get($this->baseUrl . 'wallet') |
||
33 | ->json(); |
||
34 | |||
35 | $payload['wallet'] = $wallet; |
||
36 | $address = Http::withToken($this->apiKey) |
||
37 | ->get($this->baseUrl . 'address/' . $wallet['xpub'] . "/" . 0) |
||
38 | ->json(); |
||
39 | $payload['address'] = $address; |
||
40 | return $payload; |
||
41 | } |
||
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