@@ -50,7 +50,7 @@ $ composer require otherguy/php-currency-api
50
50
The [ ` Otherguy\Currency\Symbol ` ] ( src/Symbol.php ) class provides constants for each supported currency. This is merely
51
51
a helper and does not need to be used. You can simply pass strings like ` 'USD', 'EUR', ... ` to most methods.
52
52
53
- > Please note that you are not required to use ` Otherguy\Currency\Symbol ` to specify symbols. It's simply a convenience helper.
53
+ > ! ** Note: ** You are not required to use ` Otherguy\Currency\Symbol ` to specify symbols. It's simply a convenience helper.
54
54
55
55
``` php
56
56
// 'USD'
@@ -109,7 +109,7 @@ $currency->config('format', '1');
109
109
### Set Base Currency
110
110
You can use either ` from() ` or ` source() ` to set the base currency. The methods are identical.
111
111
112
- > ** Note:** Each driver sets its own default base currency. [ FixerIO] ( https://fixer.io ) uses ` EUR ` as base currency
112
+ > ! ** Note:** Each driver sets its own default base currency. [ FixerIO] ( https://fixer.io ) uses ` EUR ` as base currency
113
113
> while [ CurrencyLayer] ( https://currencylayer.com ) uses ` USD ` .
114
114
115
115
Most services only allow you to change the base currency in their paid plans. The driver will throw a
@@ -124,7 +124,7 @@ $currency->from(Otherguy\Currency\Symbol::USD);
124
124
You can use either ` to() ` or ` symbols() ` to set the return currencies. The methods are identical. Pass a single currency
125
125
or an array of currency symbols to either of these methods.
126
126
127
- > ** Note:** Pass an empty array to return all currency symbols supported by this driver. This is the default if you
127
+ > ! ** Note:** Pass an empty array to return all currency symbols supported by this driver. This is the default if you
128
128
> don't call the method at all.
129
129
130
130
``` php
@@ -152,7 +152,7 @@ $currency->historical('2018-07-01');
152
152
### Convert Amount
153
153
Use the ` convert() ` method to convert amounts between currencies.
154
154
155
- > ** Note:** Most API providers don't allow access to this method using your free account. You can still use the
155
+ > ! ** Note:** Most API providers don't allow access to this method using your free account. You can still use the
156
156
> [ Latest Rates] ( #latest-rates ) or [ Historical Rates] ( #historical-rates ) endpoints and perform calculations or conversions
157
157
> on the [ ` ConversionResult ` ] ( #conversion-result ) object.
158
158
0 commit comments