| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 25 | public function format(Money $money): string |
||
| 26 | { |
||
| 27 | if (!$this->currencies->contains($money->getCurrency())) { |
||
| 28 | throw new FormatterException('Satoshi formatter can only format Satoshi currencies.'); |
||
| 29 | } |
||
| 30 | |||
| 31 | return $money->getAmount().SatoshiCurrencies::MSAT; |
||
| 32 | } |
||
| 34 |