@@ -460,7 +460,7 @@ |
||
460 | 460 | ]; |
461 | 461 | if (!empty($this->meta)) { |
462 | 462 | foreach ($this->meta as $k => $v) { |
463 | - $queries['meta_' . $k] = $v; |
|
463 | + $queries['meta_'.$k] = $v; |
|
464 | 464 | } |
465 | 465 | } |
466 | 466 |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | |
76 | 76 | /** |
77 | - * @param $createMeetingParams CreateMeetingParameters |
|
77 | + * @param CreateMeetingParameters $createMeetingParams CreateMeetingParameters |
|
78 | 78 | * |
79 | 79 | * @return string |
80 | 80 | */ |
@@ -268,9 +268,9 @@ discard block |
||
268 | 268 | /** |
269 | 269 | * A private utility method used by other public methods to process XML responses. |
270 | 270 | * |
271 | - * @param $url |
|
271 | + * @param string $url |
|
272 | 272 | * @param string $xml |
273 | - * @return bool|SimpleXMLElement |
|
273 | + * @return SimpleXMLElement |
|
274 | 274 | * @throws \Exception |
275 | 275 | */ |
276 | 276 | private function processXmlResponse($url, $xml = '') |
@@ -293,7 +293,7 @@ |
||
293 | 293 | curl_setopt($ch, CURLOPT_POSTFIELDS, $xml); |
294 | 294 | curl_setopt($ch, CURLOPT_HTTPHEADER, [ |
295 | 295 | 'Content-type: application/xml', |
296 | - 'Content-length: ' . strlen($xml), |
|
296 | + 'Content-length: '.strlen($xml), |
|
297 | 297 | ]); |
298 | 298 | } |
299 | 299 | $data = curl_exec($ch); |
@@ -188,7 +188,7 @@ |
||
188 | 188 | } |
189 | 189 | |
190 | 190 | /** |
191 | - * @return int |
|
191 | + * @return string |
|
192 | 192 | */ |
193 | 193 | public function getCreationTime() |
194 | 194 | { |
@@ -460,7 +460,7 @@ |
||
460 | 460 | ]; |
461 | 461 | if (!empty($this->meta)) { |
462 | 462 | foreach ($this->meta as $k => $v) { |
463 | - $queries['meta_' . $k] = $v; |
|
463 | + $queries['meta_'.$k] = $v; |
|
464 | 464 | } |
465 | 465 | } |
466 | 466 |