PATH:
home
/
lab2454c
/
omvstudio.com
/
vendor
/
moneyphp
/
money
/
src
<?php declare(strict_types=1); namespace Money; /** * Formats Money objects. */ interface MoneyFormatter { /** * Formats a Money object as string. * * @psalm-return non-empty-string * * Exception\FormatterException */ public function format(Money $money): string; }
[-] Currencies.php
[edit]
[+]
Currencies
[-] Calculator.php
[edit]
[+]
Parser
[-] Converter.php
[edit]
[+]
..
[-] MoneyFactory.php
[edit]
[+]
Exception
[-] CurrencyPair.php
[edit]
[+]
Exchange
[-] MoneyParser.php
[edit]
[-] Exchange.php
[edit]
[+]
Formatter
[-] MoneyFormatter.php
[edit]
[-] Number.php
[edit]
[+]
PHPUnit
[-] Currency.php
[edit]
[+]
Calculator
[-] Exception.php
[edit]
[-] Money.php
[edit]