Completed
Branch master (3ee61a)
by Patrick
03:04
created
Email/class.Email.php 1 patch
Doc Comments   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 = '';
Please login to merge, or discard this patch.
Serialize/class.ExcelSerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
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
         {
Please login to merge, or discard this patch.