Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
26 | class IsMeetingRunningParameters extends BaseParameters |
||
27 | { |
||
28 | private ?string $meetingId = null; |
||
29 | |||
30 | public function __construct(string $meetingId = null) |
||
31 | { |
||
32 | $this->meetingId = $meetingId; |
||
33 | } |
||
34 | |||
35 | public function getMeetingId(): ?string |
||
36 | { |
||
37 | return $this->meetingId; |
||
38 | } |
||
39 | |||
40 | public function setMeetingId(string $meetingId): self |
||
45 | } |
||
46 | |||
47 | public function getHTTPQuery(): string |
||
52 |