Skip to content

Commit

Permalink
Drop BB Prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
jaapmarcus committed Aug 18, 2024
1 parent a9aafc1 commit 8b08ac6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
36 changes: 18 additions & 18 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Mollie.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected function _generateForm(Model_Invoice $invoice): string
$service = $this->di['mod_service']('invoice', 'transaction');

// create a new transaction so we can reuse the payment ID in the next step
$output = $service->create(array('txn_id' => $payment->id, 'bb_invoice_id' => $invoice->id, 'bb_gateway_id' => $payGateway->id));
$output = $service->create(array('txn_id' => $payment->id, 'invoice_id' => $invoice->id, 'gateway_id' => $payGateway->id));`
// We still need to update the unique ID
$tx = $this->di['db']->getExistingModelById('Transaction', $output);
Expand Down

0 comments on commit 8b08ac6

Please sign in to comment.