@@ -72,7 +72,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 = ''; |
@@ -7,7 +7,7 @@ |
||
7 | 7 | { |
8 | 8 | protected $types = array('xlsx', 'xls', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/vnd.ms-excel'); |
9 | 9 | |
10 | - protected function setRowFromArray(&$sheat, $row, $array, $count=0) |
|
10 | + protected function setRowFromArray(&$sheat, $row, $array, $count = 0) |
|
11 | 11 | { |
12 | 12 | if($count === 0) |
13 | 13 | { |