@@ -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 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | /** |
80 | 80 | * @return int |
81 | 81 | */ |
82 | - public function getShowLanguage(): ?int |
|
82 | + public function getShowLanguage(): ? int |
|
83 | 83 | { |
84 | 84 | return $this->showLanguage; |
85 | 85 | } |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | /** |
88 | 88 | * @param int $showLanguage |
89 | 89 | */ |
90 | - public function setShowLanguage(?int $showLanguage) |
|
90 | + public function setShowLanguage(? int $showLanguage) |
|
91 | 91 | { |
92 | 92 | $this->showLanguage = $showLanguage; |
93 | 93 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | /** |
96 | 96 | * @return string |
97 | 97 | */ |
98 | - public function getSiteLanguage(): ?string |
|
98 | + public function getSiteLanguage(): ? string |
|
99 | 99 | { |
100 | 100 | return $this->siteLanguage; |
101 | 101 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | /** |
104 | 104 | * @param string $siteLanguage |
105 | 105 | */ |
106 | - public function setSiteLanguage(?string $siteLanguage) |
|
106 | + public function setSiteLanguage(? string $siteLanguage) |
|
107 | 107 | { |
108 | 108 | $this->siteLanguage = $siteLanguage; |
109 | 109 | } |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | /** |
112 | 112 | * @return int|null |
113 | 113 | */ |
114 | - public function getMerchantId(): ?int |
|
114 | + public function getMerchantId(): ? int |
|
115 | 115 | { |
116 | 116 | return $this->merchantId; |
117 | 117 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | /** |
120 | 120 | * @param int|null $merchantId |
121 | 121 | */ |
122 | - public function setMerchantId(?int $merchantId) |
|
122 | + public function setMerchantId(? int $merchantId) |
|
123 | 123 | { |
124 | 124 | $this->merchantId = $merchantId; |
125 | 125 | } |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | /** |
128 | 128 | * @return string |
129 | 129 | */ |
130 | - public function getStatus(): ?string |
|
130 | + public function getStatus(): ? string |
|
131 | 131 | { |
132 | 132 | return $this->status; |
133 | 133 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | /** |
136 | 136 | * @param string $status |
137 | 137 | */ |
138 | - public function setStatus(?string $status) |
|
138 | + public function setStatus(? string $status) |
|
139 | 139 | { |
140 | 140 | $this->status = $status; |
141 | 141 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | /** |
144 | 144 | * @return string |
145 | 145 | */ |
146 | - public function getType(): ?string |
|
146 | + public function getType(): ? string |
|
147 | 147 | { |
148 | 148 | return $this->type; |
149 | 149 | } |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | /** |
152 | 152 | * @param string $type |
153 | 153 | */ |
154 | - public function setType(?string $type) |
|
154 | + public function setType(? string $type) |
|
155 | 155 | { |
156 | 156 | $this->type = $type; |
157 | 157 | } |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | /** |
160 | 160 | * @return string |
161 | 161 | */ |
162 | - public function getUrl(): ?string |
|
162 | + public function getUrl(): ? string |
|
163 | 163 | { |
164 | 164 | return $this->url; |
165 | 165 | } |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | /** |
168 | 168 | * @param string $url |
169 | 169 | */ |
170 | - public function setUrl(?string $url) |
|
170 | + public function setUrl(? string $url) |
|
171 | 171 | { |
172 | 172 | $this->url = $url; |
173 | 173 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | /** |
176 | 176 | * @return string |
177 | 177 | */ |
178 | - public function getShortName(): ?string |
|
178 | + public function getShortName(): ? string |
|
179 | 179 | { |
180 | 180 | return $this->shortName; |
181 | 181 | } |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | /** |
184 | 184 | * @param string $shortName |
185 | 185 | */ |
186 | - public function setShortName(?string $shortName) |
|
186 | + public function setShortName(? string $shortName) |
|
187 | 187 | { |
188 | 188 | $this->shortName = $shortName; |
189 | 189 | } |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | /** |
192 | 192 | * @return int |
193 | 193 | */ |
194 | - public function getDesignId(): ?int |
|
194 | + public function getDesignId(): ? int |
|
195 | 195 | { |
196 | 196 | return $this->designId; |
197 | 197 | } |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | /** |
200 | 200 | * @param int $designId |
201 | 201 | */ |
202 | - public function setDesignId(?int $designId) |
|
202 | + public function setDesignId(? int $designId) |
|
203 | 203 | { |
204 | 204 | $this->designId = $designId; |
205 | 205 | } |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | /** |
208 | 208 | * @return int |
209 | 209 | */ |
210 | - public function getAntifraudId(): ?int |
|
210 | + public function getAntifraudId(): ? int |
|
211 | 211 | { |
212 | 212 | return $this->antifraudId; |
213 | 213 | } |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | /** |
216 | 216 | * @param int $antifraudId |
217 | 217 | */ |
218 | - public function setAntifraudId(?int $antifraudId) |
|
218 | + public function setAntifraudId(? int $antifraudId) |
|
219 | 219 | { |
220 | 220 | $this->antifraudId = $antifraudId; |
221 | 221 | } |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | /** |
224 | 224 | * @return string |
225 | 225 | */ |
226 | - public function getOfferCountry(): ?string |
|
226 | + public function getOfferCountry(): ? string |
|
227 | 227 | { |
228 | 228 | return $this->offerCountry; |
229 | 229 | } |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | /** |
232 | 232 | * @param string $offerCountry |
233 | 233 | */ |
234 | - public function setOfferCountry(?string $offerCountry) |
|
234 | + public function setOfferCountry(? string $offerCountry) |
|
235 | 235 | { |
236 | 236 | $this->offerCountry = $offerCountry; |
237 | 237 | } |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | /** |
240 | 240 | * @return int |
241 | 241 | */ |
242 | - public function getTariffId(): ?int |
|
242 | + public function getTariffId(): ? int |
|
243 | 243 | { |
244 | 244 | return $this->tariffId; |
245 | 245 | } |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | /** |
248 | 248 | * @param int $tariffId |
249 | 249 | */ |
250 | - public function setTariffId(?int $tariffId) |
|
250 | + public function setTariffId(? int $tariffId) |
|
251 | 251 | { |
252 | 252 | $this->tariffId = $tariffId; |
253 | 253 | } |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | /** |
256 | 256 | * @return string |
257 | 257 | */ |
258 | - public function getXFrameOption(): ?string |
|
258 | + public function getXFrameOption(): ? string |
|
259 | 259 | { |
260 | 260 | return $this->xFrameOption; |
261 | 261 | } |
@@ -263,7 +263,7 @@ discard block |
||
263 | 263 | /** |
264 | 264 | * @param string $xFrameOption |
265 | 265 | */ |
266 | - public function setXFrameOption(?string $xFrameOption) |
|
266 | + public function setXFrameOption(? string $xFrameOption) |
|
267 | 267 | { |
268 | 268 | $this->xFrameOption = $xFrameOption; |
269 | 269 | } |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | /** |
272 | 272 | * @return string |
273 | 273 | */ |
274 | - public function getUrlAlias(): ?string |
|
274 | + public function getUrlAlias(): ? string |
|
275 | 275 | { |
276 | 276 | return $this->urlAlias; |
277 | 277 | } |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | /** |
280 | 280 | * @param string $urlAlias |
281 | 281 | */ |
282 | - public function setUrlAlias(?string $urlAlias) |
|
282 | + public function setUrlAlias(? string $urlAlias) |
|
283 | 283 | { |
284 | 284 | $this->urlAlias = $urlAlias; |
285 | 285 | } |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | /** |
288 | 288 | * @return Tariff |
289 | 289 | */ |
290 | - public function getTariff(): ?Tariff |
|
290 | + public function getTariff(): ? Tariff |
|
291 | 291 | { |
292 | 292 | return $this->tariff; |
293 | 293 | } |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | /** |
296 | 296 | * @param Tariff $tariff |
297 | 297 | */ |
298 | - public function setTariff(?Tariff $tariff) |
|
298 | + public function setTariff(? Tariff $tariff) |
|
299 | 299 | { |
300 | 300 | $this->tariff = $tariff; |
301 | 301 | } |