Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
5 | trait Currency |
||
6 | { |
||
7 | public function activeCurrencys() |
||
8 | { |
||
9 | $url = '/currency'; |
||
10 | $response = $this->client->doGet($url); |
||
11 | |||
12 | return $response; |
||
13 | } |
||
14 | |||
15 | public function currency() |
||
21 | } |
||
22 | |||
23 | // binance |
||
24 | // bitcoinaverage |
||
25 | // Bitstamp |
||
26 | // Bittrex |
||
27 | // CoinMarketCap |
||
28 | // Poloniex |
||
29 | public function currencyQuote($provider = null, $coin = null) |
||
37 |