@@ -525,7 +525,7 @@ discard block |
||
| 525 | 525 | } |
| 526 | 526 | |
| 527 | 527 | /** |
| 528 | - * @param $serverUrl |
|
| 528 | + * @param string $serverUrl |
|
| 529 | 529 | * @return ClientObjectCollection[] |
| 530 | 530 | */ |
| 531 | 531 | private function getFolderContents($serverUrl) { |
@@ -611,7 +611,7 @@ discard block |
||
| 611 | 611 | /** |
| 612 | 612 | * creates the relative server "url" out of the provided path |
| 613 | 613 | * |
| 614 | - * @param $path |
|
| 614 | + * @param string $path |
|
| 615 | 615 | * @return string |
| 616 | 616 | */ |
| 617 | 617 | private function formatPath($path) { |
@@ -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 $plainMetaInfo Meta info that is used in the plain text email |
| 92 | 95 | * if empty the $metaInfo is used, if false none will be used |
| 93 | 96 | * @since 12.0.0 |
| 97 | + * @return void |
|
| 94 | 98 | */ |
| 95 | 99 | public function addBodyListItem($text, $metaInfo = '', $icon = '', $plainText = '', $plainMetaInfo = ''); |
| 96 | 100 | |
@@ -105,6 +109,7 @@ discard block |
||
| 105 | 109 | * @param string $plainTextRight Text of right button that is used in the plain text version - if empty the $textRight is used |
| 106 | 110 | * |
| 107 | 111 | * @since 12.0.0 |
| 112 | + * @return void |
|
| 108 | 113 | */ |
| 109 | 114 | public function addBodyButtonGroup($textLeft, $urlLeft, $textRight, $urlRight, $plainTextLeft = '', $plainTextRight = ''); |
| 110 | 115 | |
@@ -117,6 +122,7 @@ discard block |
||
| 117 | 122 | * if empty the $text is used, if false none will be used |
| 118 | 123 | * |
| 119 | 124 | * @since 12.0.0 |
| 125 | + * @return void |
|
| 120 | 126 | */ |
| 121 | 127 | public function addBodyButton($text, $url, $plainText = ''); |
| 122 | 128 | |
@@ -126,6 +132,7 @@ discard block |
||
| 126 | 132 | * @param string $text If the text is empty the default "Name - Slogan<br>This is an automatically sent email" will be used |
| 127 | 133 | * |
| 128 | 134 | * @since 12.0.0 |
| 135 | + * @return void |
|
| 129 | 136 | */ |
| 130 | 137 | public function addFooter($text = ''); |
| 131 | 138 | |