Completed
Pull Request — master (#29)
by Michal
04:27 queued 02:10
created
app/Drivers/Redis/RedisDataManager.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -310,6 +310,9 @@  discard block
 block discarded – undo
310 310
         return $results;
311 311
     }
312 312
 
313
+    /**
314
+     * @param string $function
315
+     */
313 316
     private function headers($function)
314 317
     {
315 318
         if ($function === 'get' || $function === 'hget') {
@@ -327,6 +330,9 @@  discard block
 block discarded – undo
327 330
         return [];
328 331
     }
329 332
 
333
+    /**
334
+     * @param string $function
335
+     */
330 336
     private function getItems($function, $rows)
331 337
     {
332 338
         $items = [];
Please login to merge, or discard this patch.
app/Drivers/MySql/Forms/MySqlItemForm.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -23,6 +23,10 @@
 block discarded – undo
23 23
 
24 24
     private $columns = [];
25 25
 
26
+    /**
27
+     * @param string $type
28
+     * @param string $table
29
+     */
26 30
     public function __construct(PDO $pdo, MySqlDataManager $dataManager, $type, $table, $item)
27 31
     {
28 32
         $this->pdo = $pdo;
Please login to merge, or discard this patch.