Completed
Branch master (9efafe)
by Patrick
03:38
created
Autoload.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@
 block discarded – undo
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', '>='))
Please login to merge, or discard this patch.
Data/class.Filter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -173,6 +173,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
Email/class.Email.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -323,6 +323,11 @@
 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
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@
 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
+    /**
11
+     * @param integer $row
12
+     */
10 13
     protected function setRowFromArray(&$sheat, $row, $array, $count = 0)
11 14
     {
12 15
         if($count === 0)
Please login to merge, or discard this patch.