Loading src/Entity/PaymentStorage.php +2 −2 Original line number Diff line number Diff line Loading @@ -45,8 +45,8 @@ class PaymentStorage extends TransactionStorageBase { 'description' => $payment->description, 'mode' => $payment->mode, 'method' => $payment->method, 'context' => $metadata['context'], 'context_id' => $metadata['context_id'], 'context' => $metadata['context'] ?? '', 'context_id' => $metadata['context_id'] ?? '', ]; if (isset($metadata['issuer'])) { $values['issuer'] = $metadata['issuer']; Loading Loading
src/Entity/PaymentStorage.php +2 −2 Original line number Diff line number Diff line Loading @@ -45,8 +45,8 @@ class PaymentStorage extends TransactionStorageBase { 'description' => $payment->description, 'mode' => $payment->mode, 'method' => $payment->method, 'context' => $metadata['context'], 'context_id' => $metadata['context_id'], 'context' => $metadata['context'] ?? '', 'context_id' => $metadata['context_id'] ?? '', ]; if (isset($metadata['issuer'])) { $values['issuer'] = $metadata['issuer']; Loading