@@ -35,6 +35,9 @@ |
||
35 | 35 | } |
36 | 36 | } |
37 | 37 | |
38 | +/** |
|
39 | + * @param string $functionName |
|
40 | + */ |
|
38 | 41 | function autoLoadHandler($functionName) |
39 | 42 | { |
40 | 43 | if(version_compare(PHP_VERSION, '5.3.0', '>=')) |
@@ -173,6 +173,9 @@ |
||
173 | 173 | return $res; |
174 | 174 | } |
175 | 175 | |
176 | + /** |
|
177 | + * @param string $substr |
|
178 | + */ |
|
176 | 179 | public function contains($substr) |
177 | 180 | { |
178 | 181 | return strstr($this->string, $substr) !== false; |
@@ -323,6 +323,11 @@ |
||
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,6 +7,9 @@ |
||
7 | 7 | { |
8 | 8 | protected $types = array('xlsx', 'xls', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'application/vnd.ms-excel'); |
9 | 9 | |
10 | + /** |
|
11 | + * @param integer $row |
|
12 | + */ |
|
10 | 13 | protected function setRowFromArray(&$sheat, $row, $array, $count = 0) |
11 | 14 | { |
12 | 15 | if($count === 0) |