Completed
Push — master ( 2cb14b...e83dd6 )
by Chauncey
18:09
created
src/Charcoal/Email/Email.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -750,7 +750,7 @@  discard block
 block discarded – undo
750 750
     /**
751 751
      * Send the email to all recipients
752 752
      *
753
-     * @return boolean Success / Failure.
753
+     * @return boolean|null Success / Failure.
754 754
      * @todo Implement methods and property for toggling rich-text vs. plain-text
755 755
      *       emails (`$mail->isHTML(true)`).
756 756
      */
@@ -887,7 +887,7 @@  discard block
 block discarded – undo
887 887
      * Log the send event for each recipient.
888 888
      *
889 889
      * @param  boolean $result Success or failure.
890
-     * @param  mixed   $mailer The raw mailer.
890
+     * @param  PHPMailer   $mailer The raw mailer.
891 891
      * @return void
892 892
      */
893 893
     protected function logSend($result, $mailer)
Please login to merge, or discard this patch.
src/Charcoal/Email/EmailAwareTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     /**
34 34
      * Convert an email address (RFC822) into a proper array notation.
35 35
      *
36
-     * @param  mixed $var An email array (containing an "email" key and optionally a "name" key).
36
+     * @param  string $var An email array (containing an "email" key and optionally a "name" key).
37 37
      * @throws InvalidArgumentException If the email is invalid.
38 38
      * @return array|null
39 39
      */
Please login to merge, or discard this patch.
src/Charcoal/Email/EmailLog.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -388,7 +388,7 @@
 block discarded – undo
388 388
     }
389 389
 
390 390
     /**
391
-     * @return mixed
391
+     * @return string
392 392
      */
393 393
     public function ip()
394 394
     {
Please login to merge, or discard this patch.