| Total Complexity | 4 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class ShippingDetailName |
||
| 6 | { |
||
| 7 | private ?string $fullName = null; |
||
| 8 | |||
| 9 | public function __construct(?string $fullName) |
||
| 10 | { |
||
| 11 | $this->fullName = $fullName; |
||
| 12 | } |
||
| 13 | |||
| 14 | public function getFullName(): ?string |
||
| 15 | { |
||
| 16 | return $this->fullName; |
||
| 17 | } |
||
| 18 | |||
| 19 | public function setFullName(?string $fullName): self |
||
| 24 | } |
||
| 25 | |||
| 26 | public function toArray(): array |
||
| 30 | ]; |
||
| 31 | } |
||
| 33 |