Completed
Push — master ( 7f7e55...d59bf3 )
by Zaahid
02:26
created
src/MimePartFactory.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of the ZBateson\MailMimeParser project.
4
- *
5
- * @license http://opensource.org/licenses/bsd-license.php BSD
6
- */
3
+     * This file is part of the ZBateson\MailMimeParser project.
4
+     *
5
+     * @license http://opensource.org/licenses/bsd-license.php BSD
6
+     */
7 7
 namespace ZBateson\MailMimeParser;
8 8
 
9 9
 use ZBateson\MailMimeParser\Header\HeaderFactory;
Please login to merge, or discard this patch.
src/PartStream.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of the ZBateson\MailMimeParser project.
4
- *
5
- * @license http://opensource.org/licenses/bsd-license.php BSD
6
- */
3
+     * This file is part of the ZBateson\MailMimeParser project.
4
+     *
5
+     * @license http://opensource.org/licenses/bsd-license.php BSD
6
+     */
7 7
 namespace ZBateson\MailMimeParser;
8 8
 
9 9
 /**
@@ -176,18 +176,18 @@  discard block
 block discarded – undo
176 176
                 break;
177 177
             case SEEK_CUR:
178 178
                 if ($offset >= 0) {
179
-                     $this->position += $offset;
180
-                     return true;
179
+                        $this->position += $offset;
180
+                        return true;
181 181
                 } else {
182
-                     return false;
182
+                        return false;
183 183
                 }
184 184
                 break;
185 185
             case SEEK_END:
186 186
                 if ($this->end + $offset >= $this->start) {
187
-                     $this->position = ($this->end - $this->start) + $offset;
188
-                     return true;
187
+                        $this->position = ($this->end - $this->start) + $offset;
188
+                        return true;
189 189
                 } else {
190
-                     return false;
190
+                        return false;
191 191
                 }
192 192
                 break;
193 193
             default:
Please login to merge, or discard this patch.
src/PartStreamRegistry.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of the ZBateson\MailMimeParser project.
4
- *
5
- * @license http://opensource.org/licenses/bsd-license.php BSD
6
- */
3
+     * This file is part of the ZBateson\MailMimeParser project.
4
+     *
5
+     * @license http://opensource.org/licenses/bsd-license.php BSD
6
+     */
7 7
 namespace ZBateson\MailMimeParser;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.