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 | namespace BrianHenryIE\WP_Bitcoin_Gateway\API\Model; |
5 | |
6 | use BrianHenryIE\WP_Bitcoin_Gateway\API\Addresses\Bitcoin_Address; |
7 | |
8 | interface Bitcoin_Order_Interface { |
9 | |
10 | public function get_btc_total_price(): int; |
11 | |
12 | public function get_btc_exchange_rate(): float; |
13 | |
14 | public function get_address(): Bitcoin_Address; |
15 | } |