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 * @package    brianhenryie/bh-wp-bitcoin-gateway
4 */
5
6namespace BrianHenryIE\WP_Bitcoin_Gateway\API;
7
8interface Exchange_Rate_API_Interface {
9
10    public function get_exchange_rate( string $currency ): string;
11}