Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
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 | public function fee() |
||
23 | { |
||
24 | $url = $this->buildUrl('/fee'); |
||
25 | $response = $this->client->doGet($url); |
||
26 | |||
27 | return $response; |
||
28 | } |
||
29 | // binance |
||
30 | // bitcoinaverage |
||
31 | // Bitstamp |
||
32 | // Bittrex |
||
33 | // CoinMarketCap |
||
34 | // Poloniex |
||
35 | public function currencyQuote($provider = null, $coin = null) |
||
41 | } |
||
42 | } |
||
43 |