Completed
Push — master ( 98ce91...54c84c )
by Ghazi
02:25
created
src/BigBlueButton.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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 = '')
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -293,7 +293,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Parameters/JoinMeetingParameters.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
     }
189 189
 
190 190
     /**
191
-     * @return int
191
+     * @return string
192 192
      */
193 193
     public function getCreationTime()
194 194
     {
Please login to merge, or discard this patch.
src/Parameters/MetaParameters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -460,7 +460,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.