Skip to content

Commit ec845cc

Browse files
#261 is seems parameters aren't defined on the response class
Probably this was the reason it was previously returning null I couldn't see a clear case for starting to store parameters as a property so went with the previous person's analysis
1 parent 388f779 commit ec845cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Omnipay/Common/Message/AbstractResponse.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public function getCode()
144144
*/
145145
public function getTransactionReference()
146146
{
147-
return $this->getParameter('transactionReference');
147+
return null;
148148
}
149149

150150
/**
@@ -154,7 +154,7 @@ public function getTransactionReference()
154154
*/
155155
public function getTransactionId()
156156
{
157-
$this->getParameter('transactionId');
157+
return null;
158158
}
159159

160160
/**

0 commit comments

Comments
 (0)