Skip to content

Commit

Permalink
Add: ErrorCode to CollectSslResult
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianKoerner committed Sep 13, 2018
1 parent 0247310 commit 32fde74
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions lib/Model/Result/CollectSslResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ class CollectSslResult extends AbstractResult
*/
protected $orderNumber;

/**
* @var integer
*/
protected $errorCode;

/**
* @var \DateTime
*/
Expand Down Expand Up @@ -420,6 +425,26 @@ public function setOrderNumber($orderNumber)
return $this;
}

/**
* @return int
*/
public function getErrorCode()
{
return $this->errorCode;
}

/**
* @param int $errorCode
*
* @return $this
*/
public function setErrorCode($errorCode)
{
$this->errorCode = $errorCode;

return $this;
}

/**
* @return int
*/
Expand Down

0 comments on commit 32fde74

Please sign in to comment.