Completed
Push — master ( 412f75...803e2f )
by Patrick
02:56
created
Email/class.Email.php 1 patch
Doc Comments   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Who is this email going to
74 74
      *
75
-     * @return array The recipients of the email
75
+     * @return string The recipients of the email
76 76
      */
77 77
     public function getToAddresses()
78 78
     {
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * Who is this email going to (CC)
84 84
      *
85
-     * @return array The recipients of the email
85
+     * @return string The recipients of the email
86 86
      */
87 87
     public function getCCAddresses()
88 88
     {
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     /**
93 93
      * Who is this email going to (BCC)
94 94
      *
95
-     * @return array The recipients of the email
95
+     * @return string The recipients of the email
96 96
      */
97 97
     public function getBCCAddresses()
98 98
     {
@@ -323,6 +323,11 @@  discard block
 block discarded – undo
323 323
         return empty($this->attachments) !== true;
324 324
     }
325 325
 
326
+    /**
327
+     * @param string $body
328
+     * @param string $encoding
329
+     * @param string $boundary
330
+     */
326 331
     protected function addBodyIfPresent($body, $encoding, $boundary)
327 332
     {
328 333
         $rawMessage = '';
Please login to merge, or discard this patch.