@@ -1,9 +1,9 @@ |
||
| 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; |
@@ -1,9 +1,9 @@ discard block |
||
| 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 |
||
| 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: |
@@ -1,9 +1,9 @@ |
||
| 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 | /** |