Completed
Push — master ( 28975f...d25d8c )
by Zaahid
06:49
created
src/Header/Consumer/GenericConsumer.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
      * as an array with a single element.
129 129
      * 
130 130
      * @param ZBateson\MailMimeParser\Header\Part\HeaderPart[] $parts
131
-     * @return ZBateson\MailMimeParser\Header\Part\HeaderPart[]
131
+     * @return \ZBateson\MailMimeParser\Header\Part\LiteralPart[]
132 132
      */
133 133
     protected function processParts(array $parts)
134 134
     {
Please login to merge, or discard this 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\Consumer\ConsumerService;
Please login to merge, or discard this patch.
src/Header/Consumer/AddressGroupConsumer.php 2 patches
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.
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\Consumer\ConsumerService;
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
 use ZBateson\MailMimeParser\Header\Consumer\ConsumerService;
Please login to merge, or discard this patch.
src/Message.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\Consumer\ConsumerService;
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.
src/MailMimeParser.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\Consumer\ConsumerService;
Please login to merge, or discard this patch.
src/MimePart.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\Consumer\ConsumerService;
Please login to merge, or discard this patch.
src/Header/AbstractHeader.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\Consumer\ConsumerService;
Please login to merge, or discard this patch.
src/Header/Part/ParameterPart.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\Consumer\ConsumerService;
Please login to merge, or discard this patch.