Total Complexity | 4 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class IsMeetingRunningParameters extends BaseParameters |
||
27 | { |
||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $meetingId; |
||
32 | |||
33 | /** |
||
34 | * IsMeetingRunningParameters constructor. |
||
35 | * |
||
36 | * @param $meetingId |
||
37 | */ |
||
38 | public function __construct($meetingId) |
||
39 | { |
||
40 | $this->meetingId = $meetingId; |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function getMeetingId() |
||
47 | { |
||
48 | return $this->meetingId; |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * @param string $meetingId |
||
53 | * |
||
54 | * @return IsMeetingRunningParameters |
||
55 | */ |
||
56 | public function setMeetingId($meetingId) |
||
61 | } |
||
62 | |||
63 | /** |
||
64 | * @return string |
||
65 | */ |
||
66 | public function getHTTPQuery() |
||
71 |