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