Skip to content

Commit 40b9871

Browse files
issue-123: fix getTransactionId method to SIMAuthorizeResponse
1 parent f288156 commit 40b9871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Message/SIMAuthorizeResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ public function getRedirectData()
4747

4848
public function getTransactionId()
4949
{
50-
return $this->data[SIMAbstractRequest::TRANSACTION_ID_PARAM] ? $this->data[SIMAbstractRequest::TRANSACTION_ID_PARAM] : null;
50+
return isset($this->data[SIMAbstractRequest::TRANSACTION_ID_PARAM]) ? $this->data[SIMAbstractRequest::TRANSACTION_ID_PARAM] : null;
5151
}
5252
}

0 commit comments

Comments
 (0)