Completed
Push — master ( 152231...2bce6b )
by Jesus
02:40
created
src/Parameters/MetaParameters.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     {
56 56
         if (count($this->meta) !== 0) {
57 57
             foreach ($this->meta as $k => $v) {
58
-                $queries['meta_' . $k] = $v;
58
+                $queries['meta_'.$k] = $v;
59 59
             }
60 60
         }
61 61
     }
Please login to merge, or discard this patch.
src/BigBlueButton.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
         if (extension_loaded('curl')) {
363 363
             $ch = curl_init();
364 364
             if (!$ch) {
365
-                throw new \RuntimeException('Unhandled curl error: ' . curl_error($ch));
365
+                throw new \RuntimeException('Unhandled curl error: '.curl_error($ch));
366 366
             }
367 367
             $timeout = 10;
368 368
             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
@@ -376,13 +376,13 @@  discard block
 block discarded – undo
376 376
                 curl_setopt($ch, CURLOPT_POST, 1);
377 377
                 curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
378 378
                 curl_setopt($ch, CURLOPT_HTTPHEADER, [
379
-                    'Content-type: ' . $contentType,
380
-                    'Content-length: ' . strlen($payload),
379
+                    'Content-type: '.$contentType,
380
+                    'Content-length: '.strlen($payload),
381 381
                 ]);
382 382
             }
383 383
             $data = curl_exec($ch);
384 384
             if ($data === false) {
385
-                throw new \RuntimeException('Unhandled curl error: ' . curl_error($ch));
385
+                throw new \RuntimeException('Unhandled curl error: '.curl_error($ch));
386 386
             }
387 387
             curl_close($ch);
388 388
 
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
 
399 399
             return new SimpleXMLElement($response);
400 400
         } catch (\RuntimeException $e) {
401
-            throw new \RuntimeException('Failover curl error: ' . $e->getMessage());
401
+            throw new \RuntimeException('Failover curl error: '.$e->getMessage());
402 402
         }
403 403
     }
404 404
 }
Please login to merge, or discard this patch.