Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class AlphaVantageService implements AlphaVantage |
||
14 | { |
||
15 | private ClientInterface $client; |
||
16 | private string $alphaVantageApiUrl; |
||
17 | private string $alphaVantageApiKey; |
||
18 | |||
19 | 3 | public function __construct(ClientInterface $client, string $alphaVantageApiUrl, string $alphaVantageApiKey) |
|
24 | } |
||
25 | |||
26 | 3 | public function get(Endpoint $endpoint): string |
|
43 |