Completed
Pull Request — master (#1)
by Joao
04:01 queued 01:28
created
src/Database/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/Repository/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/Repository/DBDataset.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -131,6 +131,9 @@
 block discarded – undo
131 131
         return $arrayDS->getIterator();
132 132
     }
133 133
 
134
+    /**
135
+     * @param string $sql
136
+     */
134 137
     protected function getQueryKey($sql, $array)
135 138
     {
136 139
         $key1 = md5($sql);
Please login to merge, or discard this patch.
Indentation   -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@  discard block
 block discarded – undo
23 23
     protected $connectionManagement;
24 24
 
25 25
     /**
26
-
27 26
      * @var DbDriverInterface
28 27
      */
29 28
     private $dbDriver = null;
@@ -223,7 +222,6 @@  discard block
 block discarded – undo
223 222
     }
224 223
 
225 224
     /**
226
-
227 225
      * @var DbFunctionsInterface
228 226
      */
229 227
     protected $dbFunction = null;
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
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
     /**
75 75
      *
76
-     * @param $array
76
+     * @param SingleRow[] $array
77 77
      * @return SingleRow[]
78 78
      */
79 79
     public function match($array)
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
     /**
244 244
      *
245 245
      * @param SingleRow $singleRow
246
-     * @return string
246
+     * @return boolean
247 247
      */
248 248
     private function evalString(SingleRow $singleRow)
249 249
     {
Please login to merge, or discard this patch.
src/Database/BaseDBAccess.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -207,7 +207,6 @@
 block discarded – undo
207 207
     }
208 208
 
209 209
     /**
210
-
211 210
      * @param IteratorInterface $iterator
212 211
      * @param string $name
213 212
      * @param array $fields
Please login to merge, or discard this patch.
src/Database/Expressions/DbDblibFunctions.php 1 patch
Indentation   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,8 +65,7 @@
 block discarded – undo
65 65
 
66 66
     /**
67 67
      * Format date column in sql string given an input format that understands Y M D
68
-
69
-*
68
+     *
70 69
 *@param string $format
71 70
      * @param bool|string $column
72 71
      * @return string
Please login to merge, or discard this patch.
src/Repository/NoSqlDataset.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
     private $_connectionManagement;
20 20
 
21 21
     /**
22
-
23 22
      * @var NoSqlDriverInterface
24 23
      */
25 24
     private $_dbDriver = null;
Please login to merge, or discard this patch.