Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class Blockchain |
||
7 | { |
||
8 | protected $apiKey; |
||
9 | protected $accountID; |
||
10 | protected $baseUrl; |
||
11 | |||
12 | /** |
||
13 | * Construct |
||
14 | */ |
||
15 | function __construct(String $apiKey, String $accountID, String $baseUrl) |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Handle Bitcoin Blockchan |
||
24 | * |
||
25 | * @return Bitcoin |
||
26 | */ |
||
27 | public function bitcoin() |
||
33 | } |