X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/vendor/moneyphp/money/src
home
/
gfecatvj
/
sites
/
restate
/
vendor
/
moneyphp
/
money
/
src
/
๐
..
๐
Calculator
๐
Calculator.php
(2.49 KB)
๐
Converter.php
(1.42 KB)
๐
Currencies
๐
Currencies.php
(693 B)
๐
Currency.php
(1.56 KB)
๐
CurrencyPair.php
(3.29 KB)
๐
Exception
๐
Exception.php
(169 B)
๐
Exchange
๐
Exchange.php
(712 B)
๐
Formatter
๐
Money.php
(15.6 KB)
๐
MoneyFactory.php
(8.95 KB)
๐
MoneyFormatter.php
(342 B)
๐
MoneyParser.php
(462 B)
๐
Number.php
(8.19 KB)
๐
PHPUnit
๐
Parser
Editing: Exchange.php
<?php namespace Money; use Money\Exception\UnresolvableCurrencyPairException; /** * Provides a way to get exchange rate from a third-party source and return a currency pair. * * @author Mรกrk Sรกgi-Kazรกr <mark.sagikazar@gmail.com> */ interface Exchange { /** * Returns a currency pair for the passed currencies with the rate coming from a third-party source. * * @param Currency $baseCurrency * @param Currency $counterCurrency * * @return CurrencyPair * * @throws UnresolvableCurrencyPairException When there is no currency pair (rate) available for the given currencies */ public function quote(Currency $baseCurrency, Currency $counterCurrency); }
Upload File
Create Folder