Passed
Branch 3.0.0 (bab743)
by Joao
04:18
created
src/Dataset/AnyDataset.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -310,6 +310,10 @@  discard block
 block discarded – undo
310 310
         return;
311 311
     }
312 312
 
313
+    /**
314
+     * @param SingleRow[] $seq
315
+     * @param string $field
316
+     */
313 317
     protected function quickSortExec($seq, $field)
314 318
     {
315 319
         if (!count($seq)) {
@@ -337,7 +341,7 @@  discard block
 block discarded – undo
337 341
 
338 342
     /**
339 343
      * @param $document
340
-     * @return array|string
344
+     * @return string
341 345
      */
342 346
     public static function fixUTF8($document)
343 347
     {
Please login to merge, or discard this patch.
src/Dataset/FixedTextFileIterator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -94,6 +94,10 @@
 block discarded – undo
94 94
         return null;
95 95
     }
96 96
 
97
+    /**
98
+     * @param string $buffer
99
+     * @param FixedTextDefinition[] $fieldDefinition
100
+     */
97 101
     protected function processBuffer($buffer, $fieldDefinition)
98 102
     {
99 103
         $cntDef = count($fieldDefinition);
Please login to merge, or discard this patch.
src/Store/Helpers/SqlHelper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -160,6 +160,9 @@
 block discarded – undo
160 160
         $this->fieldDeliRight = $right;
161 161
     }
162 162
 
163
+    /**
164
+     * @param string $sql
165
+     */
163 166
     public static function createSafeSQL($sql, $list)
164 167
     {
165 168
         return str_replace(array_keys($list), array_values($list), $sql);
Please login to merge, or discard this patch.
src/Store/MongoDbDriver.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
     /**
96 96
      * @param $idDocument
97
-     * @param null $collection
97
+     * @param string $collection
98 98
      * @return \ByJG\AnyDataset\NoSqlDocument|null
99 99
      */
100 100
     public function getDocumentById($idDocument, $collection = null)
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
     /**
114 114
      * @param \ByJG\AnyDataset\Dataset\IteratorFilter $filter
115
-     * @param null $collection
115
+     * @param null|string $collection
116 116
      * @return \ByJG\AnyDataset\NoSqlDocument[]|null
117 117
      */
118 118
     public function getDocuments(IteratorFilter $filter, $collection = null)
Please login to merge, or discard this patch.