@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace AcquiroPay\Models\Entities; |
| 6 | 6 | |
@@ -38,32 +38,32 @@ discard block |
||
| 38 | 38 | private $payments; |
| 39 | 39 | |
| 40 | 40 | |
| 41 | - public function getType(): ?string |
|
| 41 | + public function getType(): ? string |
|
| 42 | 42 | { |
| 43 | 43 | return $this->type; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - public function setType(?string $type): void |
|
| 46 | + public function setType(? string $type) : void |
|
| 47 | 47 | { |
| 48 | 48 | $this->type = $type; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | - public function getPrice(): ?float |
|
| 51 | + public function getPrice(): ? float |
|
| 52 | 52 | { |
| 53 | 53 | return $this->price; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - public function setPrice(?float $price): void |
|
| 56 | + public function setPrice(? float $price) : void |
|
| 57 | 57 | { |
| 58 | 58 | $this->price = $price; |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - public function getDescription(): ?string |
|
| 61 | + public function getDescription(): ? string |
|
| 62 | 62 | { |
| 63 | 63 | return $this->description; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - public function setDescription(?string $description): void |
|
| 66 | + public function setDescription(? string $description) : void |
|
| 67 | 67 | { |
| 68 | 68 | $this->description = $description; |
| 69 | 69 | } |
@@ -78,42 +78,42 @@ discard block |
||
| 78 | 78 | $this->allowRandomPrice = $allowRandomPrice; |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - public function getFields(): ?string |
|
| 81 | + public function getFields(): ? string |
|
| 82 | 82 | { |
| 83 | 83 | return $this->fields; |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - public function setFields(?string $fields): void |
|
| 86 | + public function setFields(? string $fields) : void |
|
| 87 | 87 | { |
| 88 | 88 | $this->fields = $fields; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - public function getCurrencyId(): ?int |
|
| 91 | + public function getCurrencyId(): ? int |
|
| 92 | 92 | { |
| 93 | 93 | return $this->currencyId; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - public function setCurrencyId(?int $currencyId): void |
|
| 96 | + public function setCurrencyId(? int $currencyId) : void |
|
| 97 | 97 | { |
| 98 | 98 | $this->currencyId = $currencyId; |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - public function getSiteId(): ?int |
|
| 101 | + public function getSiteId(): ? int |
|
| 102 | 102 | { |
| 103 | 103 | return $this->siteId; |
| 104 | 104 | } |
| 105 | 105 | |
| 106 | - public function setSiteId(?int $siteId): void |
|
| 106 | + public function setSiteId(? int $siteId) : void |
|
| 107 | 107 | { |
| 108 | 108 | $this->siteId = $siteId; |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - public function getSite(): ?Site |
|
| 111 | + public function getSite(): ? Site |
|
| 112 | 112 | { |
| 113 | 113 | return $this->site; |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - public function setSite(?Site $site): void |
|
| 116 | + public function setSite(? Site $site) : void |
|
| 117 | 117 | { |
| 118 | 118 | $this->site = $site; |
| 119 | 119 | } |
@@ -134,32 +134,32 @@ discard block |
||
| 134 | 134 | $this->payments = $payments; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - public function getStatus(): ?string |
|
| 137 | + public function getStatus(): ? string |
|
| 138 | 138 | { |
| 139 | 139 | return $this->status; |
| 140 | 140 | } |
| 141 | 141 | |
| 142 | - public function setStatus(?string $status) |
|
| 142 | + public function setStatus(? string $status) |
|
| 143 | 143 | { |
| 144 | 144 | $this->status = $status; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - public function getNotifyUrl(): ?string |
|
| 147 | + public function getNotifyUrl(): ? string |
|
| 148 | 148 | { |
| 149 | 149 | return $this->notifyUrl; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - public function setNotifyUrl(?string $notifyUrl) |
|
| 152 | + public function setNotifyUrl(? string $notifyUrl) |
|
| 153 | 153 | { |
| 154 | 154 | $this->notifyUrl = $notifyUrl; |
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - public function getWorkThrough():?string |
|
| 157 | + public function getWorkThrough(): ? string |
|
| 158 | 158 | { |
| 159 | 159 | return $this->workThrough; |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - public function setWorkThrough(?string $workThrough) |
|
| 162 | + public function setWorkThrough(? string $workThrough) |
|
| 163 | 163 | { |
| 164 | 164 | $this->workThrough = $workThrough; |
| 165 | 165 | } |
@@ -174,92 +174,92 @@ discard block |
||
| 174 | 174 | $this->confirmPaymentType = $confirmPaymentType; |
| 175 | 175 | } |
| 176 | 176 | |
| 177 | - public function getNotifyEmail(): ?string |
|
| 177 | + public function getNotifyEmail(): ? string |
|
| 178 | 178 | { |
| 179 | 179 | return $this->notifyEmail; |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - public function setNotifyEmail(?string $notifyEmail) |
|
| 182 | + public function setNotifyEmail(? string $notifyEmail) |
|
| 183 | 183 | { |
| 184 | 184 | $this->notifyEmail = $notifyEmail; |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | - public function getMessengerNotifyUrl(): ?string |
|
| 187 | + public function getMessengerNotifyUrl(): ? string |
|
| 188 | 188 | { |
| 189 | 189 | return $this->messengerNotifyUrl; |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | - public function setMessengerNotifyUrl(?string $messengerNotifyUrl) |
|
| 192 | + public function setMessengerNotifyUrl(? string $messengerNotifyUrl) |
|
| 193 | 193 | { |
| 194 | 194 | $this->messengerNotifyUrl = $messengerNotifyUrl; |
| 195 | 195 | } |
| 196 | 196 | |
| 197 | - public function getSupportEmail(): ?string |
|
| 197 | + public function getSupportEmail(): ? string |
|
| 198 | 198 | { |
| 199 | 199 | return $this->supportEmail; |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | - public function setSupportEmail(?string $supportEmail) |
|
| 202 | + public function setSupportEmail(? string $supportEmail) |
|
| 203 | 203 | { |
| 204 | 204 | $this->supportEmail = $supportEmail; |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | - public function getSupportPhone(): ?string |
|
| 207 | + public function getSupportPhone(): ? string |
|
| 208 | 208 | { |
| 209 | 209 | return $this->supportPhone; |
| 210 | 210 | } |
| 211 | 211 | |
| 212 | - public function setSupportPhone(?string $supportPhone) |
|
| 212 | + public function setSupportPhone(? string $supportPhone) |
|
| 213 | 213 | { |
| 214 | 214 | $this->supportPhone = $supportPhone; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | - public function getAccessUrl(): ?string |
|
| 217 | + public function getAccessUrl(): ? string |
|
| 218 | 218 | { |
| 219 | 219 | return $this->accessUrl; |
| 220 | 220 | } |
| 221 | 221 | |
| 222 | - public function setAccessUrl(?string $accessUrl) |
|
| 222 | + public function setAccessUrl(? string $accessUrl) |
|
| 223 | 223 | { |
| 224 | 224 | $this->accessUrl = $accessUrl; |
| 225 | 225 | } |
| 226 | 226 | |
| 227 | - public function getSecretWord(): ?string |
|
| 227 | + public function getSecretWord(): ? string |
|
| 228 | 228 | { |
| 229 | 229 | return $this->secretWord; |
| 230 | 230 | } |
| 231 | 231 | |
| 232 | - public function setSecretWord(?string $secretWord) |
|
| 232 | + public function setSecretWord(? string $secretWord) |
|
| 233 | 233 | { |
| 234 | 234 | $this->secretWord = $secretWord; |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | - public function getAllowRebill():?int |
|
| 237 | + public function getAllowRebill(): ? int |
|
| 238 | 238 | { |
| 239 | 239 | return $this->allowRebill; |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - public function setAllowRebill(?int $allowRebill) |
|
| 242 | + public function setAllowRebill(? int $allowRebill) |
|
| 243 | 243 | { |
| 244 | 244 | $this->allowRebill = $allowRebill; |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - public function getUUID(): ?string |
|
| 247 | + public function getUUID(): ? string |
|
| 248 | 248 | { |
| 249 | 249 | return $this->UUID; |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | - public function setUUID(?string $UUID) |
|
| 252 | + public function setUUID(? string $UUID) |
|
| 253 | 253 | { |
| 254 | 254 | $this->UUID = $UUID; |
| 255 | 255 | } |
| 256 | 256 | |
| 257 | - public function getCurrency(): ?Currency |
|
| 257 | + public function getCurrency(): ? Currency |
|
| 258 | 258 | { |
| 259 | 259 | return $this->currency; |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | - public function setCurrency(?Currency $currency) |
|
| 262 | + public function setCurrency(? Currency $currency) |
|
| 263 | 263 | { |
| 264 | 264 | $this->currency = $currency; |
| 265 | 265 | } |