| Total Complexity | 4 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 17 | final class BitcoinCurrencies implements Currencies |
||
| 18 | { |
||
| 19 | public const BTC = 'BTC'; |
||
| 20 | public const XBT = 'XBT'; |
||
| 21 | |||
| 22 | public const SYMBOL = "\u{20BF}"; |
||
| 23 | |||
| 24 | public function contains(Currency $currency): bool |
||
| 27 | } |
||
| 28 | |||
| 29 | public function subunitFor(Currency $currency): int |
||
| 38 | } |
||
| 39 | |||
| 40 | public function getIterator(): Traversable |
||
| 48 |