From da70a6e74906517d4b6ecd6e857e9ac1852039ad Mon Sep 17 00:00:00 2001 From: Jakub Theimer Date: Sun, 12 Jul 2020 00:01:52 +0200 Subject: [PATCH] add eet code getter and setter --- src/Payment/PaymentResponse.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Payment/PaymentResponse.php b/src/Payment/PaymentResponse.php index c95914b..b75f000 100644 --- a/src/Payment/PaymentResponse.php +++ b/src/Payment/PaymentResponse.php @@ -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;