Total Complexity | 4 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class GetMeetingInfoParameters extends BaseParameters |
||
27 | { |
||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $meetingId; |
||
32 | |||
33 | /** |
||
34 | * GetMeetingInfoParameters 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() |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * @param string $meetingId |
||
53 | * |
||
54 | * @return GetMeetingInfoParameters |
||
55 | */ |
||
56 | public function setMeetingId($meetingId) |
||
57 | { |
||
58 | $this->meetingId = $meetingId; |
||
59 | |||
60 | return $this; |
||
61 | } |
||
62 | |||
63 | /** |
||
64 | * @return string |
||
65 | */ |
||
66 | public function getHTTPQuery() |
||
71 | ] |
||
72 | ); |
||
73 | } |
||
75 |