Completed
Push — master ( d59bf3...7c5045 )
by Zaahid
02:26
created
src/Header/Consumer/AddressGroupConsumer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      * element with all email addresses from this and any sub-groups.
68 68
      * 
69 69
      * @param ZBateson\MailMimeParser\Header\Part\HeaderPart[] $parts
70
-     * @return ZBateson\MailMimeParser\Header\Part\HeaderPart[]
70
+     * @return AddressGroupPart[]
71 71
      */
72 72
     protected function processParts(array $parts)
73 73
     {
Please login to merge, or discard this patch.
src/PartStream.php 1 patch
Indentation   +8 added lines, -8 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
 /**
@@ -174,14 +174,14 @@  discard block
 block discarded – undo
174 174
                 return false;
175 175
             case SEEK_CUR:
176 176
                 if ($offset >= 0) {
177
-                     $this->position += $offset;
178
-                     return true;
177
+                        $this->position += $offset;
178
+                        return true;
179 179
                 }
180 180
                 return false;
181 181
             case SEEK_END:
182 182
                 if ($this->end + $offset >= $this->start) {
183
-                     $this->position = ($this->end - $this->start) + $offset;
184
-                     return true;
183
+                        $this->position = ($this->end - $this->start) + $offset;
184
+                        return true;
185 185
                 }
186 186
                 return false;
187 187
             default:
Please login to merge, or discard this patch.