Completed
Push — master ( 5d4e1b...373de6 )
by Zaahid
11:37
created
src/Message.php 1 patch
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -502,7 +502,6 @@  discard block
 block discarded – undo
502 502
      * Creates and returns a new MimePart for the signature part of a
503 503
      * multipart/signed message and assigns it to $this->signedSignaturePart.
504 504
      * 
505
-     * @param string $protocol
506 505
      * @param string $body
507 506
      */
508 507
     public function createSignaturePart($body)
@@ -522,7 +521,6 @@  discard block
 block discarded – undo
522 521
      * Creates a multipart/mixed MimePart assigns it to $this->signedMixedPart
523 522
      * if the message contains attachments.
524 523
      * 
525
-     * @param array $parts
526 524
      */
527 525
     private function createMultipartMixedForSignedMessage()
528 526
     {
@@ -590,8 +588,6 @@  discard block
 block discarded – undo
590 588
      * 
591 589
      * @param string $micalg The Message Integrity Check algorithm being used
592 590
      * @param string $protocol The mime-type of the signature body
593
-     * @param string $body The signature signed according to the value of
594
-     *        $protocol
595 591
      */
596 592
     public function setAsMultipartSigned($micalg, $protocol)
597 593
     {
Please login to merge, or discard this patch.
src/Stream/UUDecodeStreamFilter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      * Filters the lines in the passed $lines array, returning a concatenated
103 103
      * string of decoded lines.
104 104
      * 
105
-     * @param array $lines
105
+     * @param string[] $lines
106 106
      * @param int $consumed
107 107
      * @return string
108 108
      */
Please login to merge, or discard this patch.
src/MimePart.php 1 patch
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.