@@ -143,7 +143,7 @@ |
||
143 | 143 | { |
144 | 144 | // When hitting the process endpoint, we only need the transactionId and operation key/value pairs, and |
145 | 145 | // optionally the transactionAmount if we are capturing a portion of the total amount. |
146 | - $transactionData = array_filter($transactionData + ['operation' => $operation], function ($k) { |
|
146 | + $transactionData = array_filter($transactionData + ['operation' => $operation], function($k) { |
|
147 | 147 | return in_array($k, ['transactionId', 'operation', 'transactionAmount']); |
148 | 148 | }, ARRAY_FILTER_USE_KEY); |
149 | 149 |