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