Completed
Push — master ( 5a5d85...7272a9 )
by Joao
03:28
created
src/Repository/FixedTextFileIterator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -84,6 +84,10 @@
 block discarded – undo
84 84
         }
85 85
     }
86 86
 
87
+    /**
88
+     * @param string $buffer
89
+     * @param FixedTextDefinition[] $fieldDefinition
90
+     */
87 91
     protected function processBuffer($buffer, $fieldDefinition)
88 92
     {
89 93
         $cntDef = count($fieldDefinition);
Please login to merge, or discard this patch.
src/Database/SQLHelper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -152,6 +152,9 @@
 block discarded – undo
152 152
         $this->_fieldDeliRight = $right;
153 153
     }
154 154
 
155
+    /**
156
+     * @param string $sql
157
+     */
155 158
     public static function createSafeSQL($sql, $list)
156 159
     {
157 160
         foreach ($list as $key => $value) {
Please login to merge, or discard this patch.
src/Repository/AnyDataset.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -308,6 +308,10 @@  discard block
 block discarded – undo
308 308
         return;
309 309
     }
310 310
 
311
+    /**
312
+     * @param SingleRow[] $seq
313
+     * @param string $field
314
+     */
311 315
     protected function quickSortExec($seq, $field)
312 316
     {
313 317
         if (!count($seq)) return $seq;
@@ -329,7 +333,7 @@  discard block
 block discarded – undo
329 333
 
330 334
     /**
331 335
      * @param $document
332
-     * @return array|string
336
+     * @return string
333 337
      */
334 338
     public static function fixUTF8($document)
335 339
     {
Please login to merge, or discard this patch.
src/Repository/IteratorFilter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
     /**
73 73
      *
74
-     * @param $array
74
+     * @param SingleRow[] $array
75 75
      * @return SingleRow[]
76 76
      */
77 77
     public function match($array)
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
     /**
242 242
      *
243 243
      * @param string[] $array
244
-     * @return string
244
+     * @return boolean
245 245
      */
246 246
     private function evalString($array)
247 247
     {
Please login to merge, or discard this patch.
src/Repository/SocketIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      *
17 17
      * @param resource $handle
18
-     * @param array $fieldnames
18
+     * @param string $fieldnames
19 19
      * @param string $rowsep
20 20
      * @param string $colsep
21 21
      */
Please login to merge, or discard this patch.
src/Repository/XmlDataset.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
 
72 72
     /**
73 73
      * @access public
74
-     * @return DBIterator
74
+     * @return XmlIterator
75 75
      */
76 76
     public function getIterator()
77 77
     {
Please login to merge, or discard this patch.
src/Repository/XmlIterator.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -32,6 +32,11 @@
 block discarded – undo
32 32
     private $_current = 0;
33 33
     protected $_registerNS;
34 34
 
35
+    /**
36
+     * @param DOMNodeList $nodeList
37
+     * @param string[] $colNodes
38
+     * @param string $registerNS
39
+     */
35 40
     public function __construct($nodeList, $colNodes, $registerNS)
36 41
     {
37 42
         if (!($nodeList instanceof DOMNodeList)) {
Please login to merge, or discard this patch.