Passed
Push — master ( 8c77bf...be291e )
by Zaahid
04:42
created
src/ChunkSplitStream.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,12 +68,12 @@
 block discarded – undo
68 68
         if ($this->tell() !== 0) {
69 69
             $next = $this->lineLength - ($this->position % ($this->lineLength + $this->lineEndingLength));
70 70
             if (strlen($string) > $next) {
71
-                $firstLine = substr($string, 0, $next) . $this->lineEnding;
71
+                $firstLine = substr($string, 0, $next).$this->lineEnding;
72 72
                 $string = substr($string, $next);
73 73
             }
74 74
         }
75 75
         // chunk_split always ends with the passed line ending
76
-        $chunked = $firstLine . chunk_split($string, $this->lineLength, $this->lineEnding);
76
+        $chunked = $firstLine.chunk_split($string, $this->lineLength, $this->lineEnding);
77 77
         return substr($chunked, 0, strlen($chunked) - $this->lineEndingLength);
78 78
     }
79 79
 
Please login to merge, or discard this patch.
src/Base64Stream.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
      */
155 155
     public function write($string)
156 156
     {
157
-        $bytes = $this->remainder . $string;
157
+        $bytes = $this->remainder.$string;
158 158
         $len = strlen($bytes);
159 159
         if (($len % 3) !== 0) {
160 160
             $this->remainder = substr($bytes, -($len % 3));
Please login to merge, or discard this patch.