Debugging Molli iDeal payments

This commit is contained in:
David Bomba 2021-11-17 14:18:13 +11:00
parent 889f669257
commit fe934645c4
4 changed files with 4 additions and 0 deletions

View File

@ -86,6 +86,7 @@ class Bancontact implements MethodInterface
'webhookUrl' => $this->mollie->company_gateway->webhookUrl(), 'webhookUrl' => $this->mollie->company_gateway->webhookUrl(),
'metadata' => [ 'metadata' => [
'client_id' => $this->mollie->client->hashed_id, 'client_id' => $this->mollie->client->hashed_id,
'hash' => $this->mollie->payment_hash->hash
], ],
]); ]);

View File

@ -89,6 +89,7 @@ class BankTransfer implements MethodInterface
'webhookUrl' => $this->mollie->company_gateway->webhookUrl(), 'webhookUrl' => $this->mollie->company_gateway->webhookUrl(),
'metadata' => [ 'metadata' => [
'client_id' => $this->mollie->client->hashed_id, 'client_id' => $this->mollie->client->hashed_id,
'hash' => $this->mollie->payment_hash->hash
], ],
]); ]);

View File

@ -86,6 +86,7 @@ class IDEAL implements MethodInterface
'webhookUrl' => $this->mollie->company_gateway->webhookUrl(), 'webhookUrl' => $this->mollie->company_gateway->webhookUrl(),
'metadata' => [ 'metadata' => [
'client_id' => $this->mollie->client->hashed_id, 'client_id' => $this->mollie->client->hashed_id,
'hash' => $this->mollie->payment_hash->hash
], ],
]); ]);

View File

@ -86,6 +86,7 @@ class KBC implements MethodInterface
'webhookUrl' => $this->mollie->company_gateway->webhookUrl(), 'webhookUrl' => $this->mollie->company_gateway->webhookUrl(),
'metadata' => [ 'metadata' => [
'client_id' => $this->mollie->client->hashed_id, 'client_id' => $this->mollie->client->hashed_id,
'hash' => $this->mollie->payment_hash->hash
], ],
]); ]);