Completed
Pull Request — master (#3)
by Lars
14:36
created
examples/callback_csv.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,9 +69,9 @@
 block discarded – undo
69 69
 /**
70 70
  * Function to clean the data from the Callback Function for optimized display
71 71
  *
72
- * @param $email
73
- * @param $bounce_type
74
- * @param $remove
72
+ * @param string $email
73
+ * @param string $bounce_type
74
+ * @param boolean $remove
75 75
  *
76 76
  * @return mixed
77 77
  */
Please login to merge, or discard this patch.
examples/callback_echo.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@
 block discarded – undo
40 40
 /**
41 41
  * Function to clean the data from the Callback Function for optimized display
42 42
  *
43
- * @param $email
44
- * @param $bounceType
45
- * @param $remove
43
+ * @param string $email
44
+ * @param string $bounceType
45
+ * @param boolean $remove
46 46
  *
47 47
  * @return mixed
48 48
  */
Please login to merge, or discard this patch.
src/BounceMailHandler/BounceMailHandler.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -772,7 +772,7 @@
 block discarded – undo
772 772
    * @param string  $mailbox the mailbox name, must be in 'INBOX.checkmailbox' format
773 773
    * @param boolean $create  whether or not to create the checkmailbox if not found, defaults to true
774 774
    *
775
-   * @return boolean
775
+   * @return null|boolean
776 776
    */
777 777
   public function mailboxExist($mailbox, $create = true)
778 778
   {
Please login to merge, or discard this patch.
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Bounce Mail Handler (formerly known as BMH and PHPMailer-BMH)
4
- *
5
- * @copyright 2008-2009 Andry Prevost. All Rights Reserved.
6
- * @copyright 2011-2012 Anthon Pang.
7
- * @copyright 2015-2015 Lars Moelleken.
8
- *
9
- * @license   GPL
10
- *
11
- * @package   BounceMailHandler
12
- *
13
- * @author    Andy Prevost <[email protected]>
14
- * @author    Anthon Pang <[email protected]>
15
- * @author    Lars Moelleken <[email protected]>
16
- */
3
+   * Bounce Mail Handler (formerly known as BMH and PHPMailer-BMH)
4
+   *
5
+   * @copyright 2008-2009 Andry Prevost. All Rights Reserved.
6
+   * @copyright 2011-2012 Anthon Pang.
7
+   * @copyright 2015-2015 Lars Moelleken.
8
+   *
9
+   * @license   GPL
10
+   *
11
+   * @package   BounceMailHandler
12
+   *
13
+   * @author    Andy Prevost <[email protected]>
14
+   * @author    Anthon Pang <[email protected]>
15
+   * @author    Lars Moelleken <[email protected]>
16
+   */
17 17
 namespace BounceMailHandler;
18 18
 
19 19
 require_once __DIR__ . '/phpmailer-bmh_rules.php';
Please login to merge, or discard this patch.
examples/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 //$bmh->debugBodyRule      = false; // false is default, no need to specify
52 52
 //$bmh->debugDsnRule       = false; // false is default, no need to specify
53 53
 //$bmh->purgeUnprocessed   = false; // false is default, no need to specify
54
-$bmh->disableDelete        = true; // false is default, no need to specify
54
+$bmh->disableDelete = true; // false is default, no need to specify
55 55
 
56 56
 /*
57 57
  * for local mailbox (to process .EML files)
Please login to merge, or discard this patch.
examples/callback_database.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@
 block discarded – undo
40 40
 /**
41 41
  * Function to clean the data from the Callback Function for optimized display
42 42
  *
43
- * @param $email
44
- * @param $bounceType
45
- * @param $remove
43
+ * @param string $email
44
+ * @param string $bounceType
45
+ * @param boolean $remove
46 46
  *
47 47
  * @return mixed
48 48
  */
Please login to merge, or discard this patch.