@@ -55,6 +55,7 @@ discard block |
||
55 | 55 | * Adds a header to the email |
56 | 56 | * |
57 | 57 | * @since 12.0.0 |
58 | + * @return void |
|
58 | 59 | */ |
59 | 60 | public function addHeader(); |
60 | 61 | |
@@ -62,10 +63,11 @@ discard block |
||
62 | 63 | * Adds a heading to the email |
63 | 64 | * |
64 | 65 | * @param string $title |
65 | - * @param string $plainTitle|bool Title that is used in the plain text email |
|
66 | + * @param string $plainTitle Title that is used in the plain text email |
|
66 | 67 | * if empty the $title is used, if false none will be used |
67 | 68 | * |
68 | 69 | * @since 12.0.0 |
70 | + * @return void |
|
69 | 71 | */ |
70 | 72 | public function addHeading($title, $plainTitle = ''); |
71 | 73 | |
@@ -77,6 +79,7 @@ discard block |
||
77 | 79 | * if empty the $text is used, if false none will be used |
78 | 80 | * |
79 | 81 | * @since 12.0.0 |
82 | + * @return void |
|
80 | 83 | */ |
81 | 84 | public function addBodyText($text, $plainText = ''); |
82 | 85 | |
@@ -91,6 +94,7 @@ discard block |
||
91 | 94 | * @param string $plainTextRight Text of right button that is used in the plain text version - if empty the $textRight is used |
92 | 95 | * |
93 | 96 | * @since 12.0.0 |
97 | + * @return void |
|
94 | 98 | */ |
95 | 99 | public function addBodyButtonGroup($textLeft, $urlLeft, $textRight, $urlRight, $plainTextLeft = '', $plainTextRight = ''); |
96 | 100 | |
@@ -103,6 +107,7 @@ discard block |
||
103 | 107 | * if empty the $text is used, if false none will be used |
104 | 108 | * |
105 | 109 | * @since 12.0.0 |
110 | + * @return void |
|
106 | 111 | */ |
107 | 112 | public function addBodyButton($text, $url, $plainText = ''); |
108 | 113 | |
@@ -112,6 +117,7 @@ discard block |
||
112 | 117 | * @param string $text If the text is empty the default "Name - Slogan<br>This is an automatically generated email" will be used |
113 | 118 | * |
114 | 119 | * @since 12.0.0 |
120 | + * @return void |
|
115 | 121 | */ |
116 | 122 | public function addFooter($text = ''); |
117 | 123 |