You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 30, 2020. It is now read-only.
These parameters will only be sent during trigger-completion events
Would it be possible to allow to pass an array $data in the complete() call (it could be empty by default)?
/**
* Can be used to Completes a 3DS 2 transaction in the device fingerprint stage
* See docs for more information.
*
* <code>
* // Completes a 3DS 2 transaction in the device fingerprint stage.
* Spreedly::transaction($transactionToken)->complete($data);
* </code>
*
*
* @return mixed
*
* @throws Exceptions\MissingTransactionTokenException
*/
public function complete(array $data = [])
{
if (!$this->transactionToken) {
throw new Exceptions\MissingTransactionTokenException();
}
return $this->client->post('v1/transactions/'.$this->transactionToken.'/complete.json', $data);
}
The text was updated successfully, but these errors were encountered:
According to Spreedly guide:
Would it be possible to allow to pass an array $data in the complete() call (it could be empty by default)?
The text was updated successfully, but these errors were encountered: