Total Complexity | 7 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | class UpdateProductRequest |
||
11 | { |
||
12 | use HasDescription; |
||
13 | use HasCategory; |
||
14 | use HasImageUrl; |
||
15 | use HasHomeUrl; |
||
16 | |||
17 | protected string $id; |
||
18 | |||
19 | 1 | public function __construct(string $id) |
|
22 | 1 | } |
|
23 | |||
24 | 1 | public function getId(): string |
|
25 | { |
||
26 | 1 | return $this->id; |
|
27 | } |
||
28 | |||
29 | 1 | public function toArray(): array |
|
66 | } |
||
67 | } |
||
68 |