Passed
Push — releases/v0.3 ( c524f4...21cc01 )
by Luke
02:23
created
src/CSVelte/IO/StreamResource.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
         if (!$this->isConnected()) {
243 243
             /** @var IOException $e */
244 244
             $e          = null;
245
-            $errhandler = function () use (&$e) {
245
+            $errhandler = function() use (&$e) {
246 246
                 $e = new IOException(sprintf(
247 247
                     'Could not open connection for %s using mode %s',
248 248
                     $this->getUri(),
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
 
546 546
             return $this;
547 547
         }
548
-        throw new InvalidArgumentException('Context options must be an array, got: ' . gettype($options));
548
+        throw new InvalidArgumentException('Context options must be an array, got: '.gettype($options));
549 549
     }
550 550
 
551 551
     /**
@@ -569,7 +569,7 @@  discard block
 block discarded – undo
569 569
 
570 570
             return $this;
571 571
         }
572
-        throw new InvalidArgumentException('Context parameters must be an array, got: ' . gettype($params));
572
+        throw new InvalidArgumentException('Context parameters must be an array, got: '.gettype($params));
573 573
     }
574 574
 
575 575
     /**
Please login to merge, or discard this patch.