Skip to content

Commit 465b6fd

Browse files
committed
MAG-832: Migrate v2 Guarantee cancel to v3 Return
1 parent 66759d8 commit 465b6fd

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

lib/Core/Response/ReturnResponse.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,21 @@ class ReturnResponse extends SaleResponse
2525
'traceId',
2626
'returnId',
2727
];
28+
29+
/**
30+
* @return string
31+
*/
32+
public function getReturnId()
33+
{
34+
return $this->returnId;
35+
}
36+
37+
/**
38+
* @param $returnId
39+
* @return void
40+
*/
41+
public function setReturnId($returnId)
42+
{
43+
$this->returnId = $returnId;
44+
}
2845
}

lib/Core/Response/SaleResponse.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
*/
1414
namespace Signifyd\Core\Response;
1515

16-
use Signifyd\Core\Exceptions\LoggerException;
1716
use Signifyd\Core\Response;
1817
use Signifyd\Models\Decision;
1918
use Signifyd\Models\Coverage;

0 commit comments

Comments
 (0)