Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class CreateUpdateMessage implements SerializedRequestAwareInterface |
||
14 | { |
||
15 | use SerializedRequestAwareTrait; |
||
16 | |||
17 | /** |
||
18 | * @var int |
||
19 | */ |
||
20 | private $entityId; |
||
21 | |||
22 | /** |
||
23 | * @return int |
||
24 | */ |
||
25 | public function getEntityId(): int |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @param int $entityId |
||
32 | * @return $this |
||
33 | */ |
||
34 | public function setEntityId(int $entityId): self |
||
40 |