Completed
Push — 5.x ( 158fb7...5eecd4 )
by Lars
06:12
created
lib/classes/Swift/Mime/Headers/DateHeader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
      *
71 71
      * This method returns a UNIX timestamp.
72 72
      *
73
-     * @return mixed
73
+     * @return integer|null
74 74
      */
75 75
     public function getFieldBodyModel()
76 76
     {
Please login to merge, or discard this patch.
lib/classes/Swift/Mime/Headers/MailboxHeader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
      *
203 203
      * @see getNameAddresses()
204 204
      *
205
-     * @return string[]
205
+     * @return integer[]
206 206
      */
207 207
     public function getAddresses()
208 208
     {
Please login to merge, or discard this patch.
lib/classes/Swift/Mime/SimpleMimeEntity.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -641,7 +641,7 @@
 block discarded – undo
641 641
      *
642 642
      * @param string $field
643 643
      *
644
-     * @return null|string[]|string
644
+     * @return string
645 645
      */
646 646
     protected function _getHeaderFieldModel($field)
647 647
     {
Please login to merge, or discard this patch.
lib/classes/Swift/Signers/DomainKeySigner.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -520,6 +520,9 @@
 block discarded – undo
520 520
         $this->_hash = hash_final($this->_hashHandler, true);
521 521
     }
522 522
 
523
+    /**
524
+     * @param string $string
525
+     */
523 526
     private function _addToHash($string)
524 527
     {
525 528
         $this->_canonData .= $string;
Please login to merge, or discard this patch.
lib/classes/Swift/Transport/MailTransport.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
      *
263 263
      * @param Swift_Mime_Message $message
264 264
      *
265
-     * @return mixed|null|string
265
+     * @return string|null
266 266
      */
267 267
     private function _getReversePath(Swift_Mime_Message $message)
268 268
     {
Please login to merge, or discard this patch.
lib/classes/Swift/Signers/OpenDKIMSigner.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     }
142 142
 
143 143
     /**
144
-     * @return $this|Swift_Signers_HeaderSigner|void
144
+     * @return Swift_Signers_DKIMSigner|null
145 145
      */
146 146
     public function startBody()
147 147
     {
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     }
156 156
 
157 157
     /**
158
-     * @return $this|Swift_Signers_HeaderSigner|void
158
+     * @return Swift_Signers_DKIMSigner|null
159 159
      */
160 160
     public function endBody()
161 161
     {
Please login to merge, or discard this patch.