Completed
Push — 2.x ( 9d251f...2923cc )
by Delete
03:57
created
src/Source/Ini/DataSetsFromContentTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     {
37 37
         $unprocessedBytes = '';
38 38
         foreach ($this->getContent() as $bytes) {
39
-            $combinedBytes = $unprocessedBytes . $bytes;
39
+            $combinedBytes = $unprocessedBytes.$bytes;
40 40
             $patternStart = strpos($combinedBytes, '[');
41 41
 
42 42
             $dataProcessed = false;
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     {
70 70
         if (!is_string($data)) {
71 71
             throw new InvalidArgumentException(
72
-                "Invalid type '" . gettype($data) . "' for argument 'data'."
72
+                "Invalid type '".gettype($data)."' for argument 'data'."
73 73
             );
74 74
         }
75 75
 
Please login to merge, or discard this patch.