Completed
Push — master ( 5d4e1b...373de6 )
by Zaahid
11:37
created
src/MimePart.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     /**
175 175
      * Returns true if this part's mime type is multipart/*
176 176
      *
177
-     * @return bool
177
+     * @return integer
178 178
      */
179 179
     public function isMultiPart()
180 180
     {
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
     /**
188 188
      * Returns true if this part's mime type is text/*
189 189
      * 
190
-     * @return bool
190
+     * @return integer
191 191
      */
192 192
     public function isTextPart()
193 193
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -481,7 +481,7 @@
 block discarded – undo
481 481
             $first = false;
482 482
             $read = ltrim($read, "\r\n");
483 483
         }
484
-        $read = $lastChars . $read;
484
+        $read = $lastChars.$read;
485 485
         $read = preg_replace('/\r\n|\r|\n/', "\r\n", $read);
486 486
         $lastChars = '';
487 487
         $matches = null;
Please login to merge, or discard this patch.