| .. | |||||
| Calculator | |||||
| Currencies | |||||
| Exception | |||||
| Exchange | |||||
| Formatter | |||||
| PHPUnit | |||||
| Parser | |||||
| Calculator.php | |||||
| Converter.php | |||||
| Currencies.php | |||||
| Currency.php | |||||
| CurrencyPair.php | |||||
| Exception.php | |||||
| Exchange.php | |||||
| Money.php | |||||
| MoneyFactory.php | |||||
| MoneyFormatter.php | |||||
| MoneyParser.php | |||||
| Number.php |
<?php namespace Money; /** * Parses a string into a Money object. * * @author Frederik Bosch <[email protected]> */ interface MoneyParser { /** * Parses a string into a Money object (including currency). * * @param string $money * @param Currency|string|null $forceCurrency * * @return Money * * @throws Exception\ParserException */ public function parse($money, $forceCurrency = null); }
| .. | |||||
| Calculator | |||||
| Currencies | |||||
| Exception | |||||
| Exchange | |||||
| Formatter | |||||
| PHPUnit | |||||
| Parser | |||||
| Calculator.php | |||||
| Converter.php | |||||
| Currencies.php | |||||
| Currency.php | |||||
| CurrencyPair.php | |||||
| Exception.php | |||||
| Exchange.php | |||||
| Money.php | |||||
| MoneyFactory.php | |||||
| MoneyFormatter.php | |||||
| MoneyParser.php | |||||
| Number.php |