File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
src/Omnipay/Common/Message Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -455,6 +455,8 @@ public function setDescription($value)
455
455
/**
456
456
* Get the transaction ID.
457
457
*
458
+ * The transaction ID is the identifier generated by the merchant website.
459
+ *
458
460
* @return string
459
461
*/
460
462
public function getTransactionId ()
@@ -476,6 +478,9 @@ public function setTransactionId($value)
476
478
/**
477
479
* Get the transaction reference.
478
480
*
481
+ * The transaction reference is the identifier generated by the remote
482
+ * payment gateway.
483
+ *
479
484
* @return string
480
485
*/
481
486
public function getTransactionReference ()
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ abstract class AbstractResponse implements ResponseInterface
37
37
* @var RequestInterface
38
38
*/
39
39
protected $ request ;
40
-
40
+
41
41
/**
42
42
* The data contained in the response.
43
43
*
@@ -147,6 +147,16 @@ public function getTransactionReference()
147
147
return null ;
148
148
}
149
149
150
+ /**
151
+ * Get the transaction ID as generated by the merchant website.
152
+ *
153
+ * @return string
154
+ */
155
+ public function getTransactionId ()
156
+ {
157
+ return null ;
158
+ }
159
+
150
160
/**
151
161
* Automatically perform any required redirect
152
162
*
You can’t perform that action at this time.
0 commit comments