Completed
Push — master ( 273074...8cf231 )
by Ghazi
02:28
created
src/BigBlueButton.php 1 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/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.