Total Complexity | 5 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | class GetContractClientsRequest |
||
21 | { |
||
22 | /** |
||
23 | * @Serializer\Type("string") |
||
24 | */ |
||
25 | private ?string $clientSystemId = null; |
||
26 | 2 | ||
27 | public function __construct(?string $clientSystemId) |
||
28 | 2 | { |
|
29 | $this->clientSystemId = $clientSystemId; |
||
30 | } |
||
31 | 1 | ||
32 | public function getClientSystemId(): ?string |
||
33 | 1 | { |
|
34 | return $this->clientSystemId; |
||
35 | } |
||
36 | 1 | ||
37 | public function setClientSystemId(?string $clientSystemId): void |
||
38 | 1 | { |
|
39 | $this->clientSystemId = $clientSystemId; |
||
40 | } |
||
41 | 2 | ||
42 | public function __serialize(): array |
||
43 | 2 | { |
|
44 | return $this->toArray(); |
||
45 | 2 | } |
|
46 | 1 | ||
47 | public function toArray(): array |
||
51 | ]; |
||
52 | } |
||
53 | } |
||
54 |