Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class OpenFoodFactsApiWrapper |
||
10 | { |
||
11 | public readonly Api $api; |
||
12 | |||
13 | 30 | public function __construct( |
|
19 | } |
||
20 | |||
21 | 30 | protected function setupApi(string $environment): Api |
|
22 | { |
||
23 | 30 | return new Api( |
|
24 | 30 | $environment, |
|
25 | 30 | $this->parameters['geography'] ?? 'world', |
|
26 | 30 | null, |
|
27 | 30 | $this->httpClient(), |
|
28 | 30 | $this->cache |
|
29 | 30 | ); |
|
30 | } |
||
31 | |||
32 | 30 | protected function httpClient(): Client |
|
36 | 30 | ]); |
|
37 | } |
||
39 |