Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | /** |
3 | * |
4 | */ |
5 | |
6 | namespace BrianHenryIE\WP_Bitcoin_Gateway\API\Model; |
7 | |
8 | interface Address_Balance { |
9 | |
10 | /** |
11 | * @return string |
12 | */ |
13 | public function get_confirmed_balance(): string; |
14 | |
15 | /** |
16 | * @return string |
17 | */ |
18 | public function get_unconfirmed_balance(): string; |
19 | |
20 | /** |
21 | * @return int |
22 | */ |
23 | public function get_number_of_confirmations(): int; |
24 | } |