Skip to content

Commit

Permalink
add eet code getter and setter
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Theimer committed Jul 11, 2020
1 parent bfcf72b commit da70a6e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Payment/PaymentResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,18 @@ public function getRedirect(): bool
return $this->redirect;
}

public function setEetCode(string $eetCode): self
{
$this->eetCode = $eetCode;

return $this;
}

public function getEetCode(): bool
{
return $this->eetCode;
}

public function setErrors(array $errors): self
{
$this->errors = $errors;
Expand Down

0 comments on commit da70a6e

Please sign in to comment.