PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
moneyphp
/
money
/
src
<?php namespace Money; /** * Parses a string into a Money object. * * @author Frederik Bosch <f.bosch@genkgo.nl> */ 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); }
[-] 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]