Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d97587 commit ad27549Copy full SHA for ad27549
1 file changed
README.md
@@ -220,6 +220,14 @@ $customer = new Model\Person(
220
221
$amount = Money\Amount::GBP()->withMinorUnit(999);
222
223
+// Or better to use the moneyphp/money package:
224
+
225
+use Money\Money as MoneyPhp;
226
227
+$moneyphp_model = MoneyPhp::GBP(999);
228
+$amount = new Money\MoneyAmount($moneyphp_model);
229
230
231
// We have a card to charge (we get the session key and captured the card identifier earlier).
232
// See below for details of the various card request objects.
233
0 commit comments