We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f425ad4 + d6429b3 commit 0058f68Copy full SHA for 0058f68
1 file changed
README.md
@@ -96,7 +96,7 @@ $privateAppKey = 'your-private-key-goes-here';
96
'amount' => $amount, //value must be in cents
97
'currency' => $currency //see available formats https://github.com/paylike/currencies
98
);
99
- $transaction = \Paylike\Transaction::create( $transactionId, $data );
+ $transaction = \Paylike\Transaction::create( $merchantId, $data );
100
// you will now have the transaction data in the $transaction variable.
101
```
102
@@ -107,4 +107,4 @@ $privateAppKey = 'your-private-key-goes-here';
107
```php
108
$card = \Paylike\Card::fetch( $cardId );
109
// you will now have the card data in the $card variable.
110
-```
+```
0 commit comments