Skip to content

Commit

Permalink
Fixed a mistake from the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BelleNottelling committed Nov 18, 2024
1 parent 3a38507 commit cd9f75c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/php-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,7 @@ jobs:
path: "FOSSBilling"
ref: ${{ steps.get_id.outputs.tag }}

- name: Install Composer Dependencies (<=0.4.x)
if: ${{ hashFiles('FOSSBilling/src/composer.json') }}
uses: php-actions/composer@v6
with:
args: --working-dir=FOSSBilling/src
dev: no

- name: Install Composer Dependencies (>=0.5.0)
if: ${{ hashFiles('FOSSBilling/composer.json') }}
- name: Install Composer Dependencies
uses: php-actions/composer@v6
with:
args: --working-dir=FOSSBilling/
Expand Down
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, 'invoice_id' => $invoice->id, '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 cd9f75c

Please sign in to comment.