Skip to content

Commit

Permalink
Merge pull request #1 from DarvinStudio/fix_order_bundle_bug
Browse files Browse the repository at this point in the history
fix payment request parameters bug
  • Loading branch information
nmavrin authored Oct 20, 2020
2 parents 05340dc + 3ad3bc8 commit 33d7ead
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Message/Request/AuthorizeRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function getData(): array
'email' => $this->getEmail(),
'phone' => $this->getPhone(),
'taxSystem' => $this->getTaxSystem(),
'orderBundle' => $this->getOrderNumber(),
'orderBundle' => $this->getOrderBundle(),
];
}

Expand Down
2 changes: 1 addition & 1 deletion src/Message/Request/PurchaseRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function getData(): array
'email' => $this->getEmail(),
'phone' => $this->getPhone(),
'taxSystem' => $this->getTaxSystem(),
'orderBundle' => $this->getOrderNumber(),
'orderBundle' => $this->getOrderBundle(),
];
}

Expand Down

0 comments on commit 33d7ead

Please sign in to comment.