Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/Common/Message/AbstractResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,20 @@ public function getTransactionReference()
return null;
}

/**
* Gateway Card Reference
*
* @return null|string A reference sometimes provided by the gateway
* representing a tokenized or otherwise stored card.
*
* If this is returned it can be re-used in place of card details in
* subsequent transactions.
*/
public function getCardReference()
{
return null;
}

/**
* Get the transaction ID as generated by the merchant website.
*
Expand Down