| Total Complexity | 4 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class Brand |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string|null |
||
| 12 | * @SerializedName("PaymentMethod") |
||
| 13 | */ |
||
| 14 | private $paymentMethod; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string|null |
||
| 18 | * @SerializedName("Name") |
||
| 19 | */ |
||
| 20 | private $name; |
||
| 21 | |||
| 22 | public function getPaymentMethod(): ?string |
||
| 25 | } |
||
| 26 | |||
| 27 | public function setPaymentMethod(?string $paymentMethod): self |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getName(): ?string |
||
| 37 | } |
||
| 38 | |||
| 39 | public function setName(?string $name): self |
||
| 46 |