Skip to content

Commit

Permalink
update doc - required params (#73)
Browse files Browse the repository at this point in the history
closes #71
  • Loading branch information
JanHrivnak authored Oct 13, 2020
1 parent 35546ae commit 49bdd37
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,10 @@ $payment = [
'additional_params' => [
['name' => 'invoicenumber', 'value' => '2017001'],
],
'return_url' => 'http://www.myeshop.cz/api/gopay/return',
'notify_url' => 'http://www.myeshop.cz/api/gopay/notify',
'callback' => [
'return_url' => 'http://www.myeshop.cz/api/gopay/return',
'notify_url' => 'http://www.myeshop.cz/api/gopay/notify',
],
'lang' => Language::CZ,
];
```
Expand Down
6 changes: 4 additions & 2 deletions examples/create.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@
'additional_params' => [
['name' => 'invoicenumber', 'value' => '2017001'],
],
'return_url' => 'http://www.myeshop.cz/api/gopay/return',
'notify_url' => 'http://www.myeshop.cz/api/gopay/notify',
'callback' => [
'return_url' => 'http://www.myeshop.cz/api/gopay/return',
'notify_url' => 'http://www.myeshop.cz/api/gopay/notify',
],
'lang' => Language::CZ,
];

Expand Down

0 comments on commit 49bdd37

Please sign in to comment.