Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 5 | ||
Bugs | 2 | Features | 1 |
1 | <?php |
||
26 | class InsertDocumentParameters extends BaseParameters |
||
27 | { |
||
28 | use DocumentableTrait; |
||
29 | |||
30 | private ?string $meetingId = null; |
||
31 | |||
32 | public function __construct(string $meetingId = null) |
||
33 | { |
||
34 | $this->meetingId = $meetingId; |
||
35 | } |
||
36 | |||
37 | public function getMeetingId(): ?string |
||
38 | { |
||
39 | return $this->meetingId; |
||
40 | } |
||
41 | |||
42 | public function setMeetingId(string $meetingId): self |
||
43 | { |
||
44 | $this->meetingId = $meetingId; |
||
45 | |||
46 | return $this; |
||
47 | } |
||
48 | |||
49 | public function getHTTPQuery(): string |
||
54 | ] |
||
55 | ); |
||
56 | } |
||
57 | } |
||
58 |