Completed
Pull Request — master (#27)
by Michal
07:40
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.
app/Drivers/RabbitMQ/RabbitMQManagementApiClient.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -61,6 +61,10 @@  discard block
 block discarded – undo
61 61
         return $queues;
62 62
     }
63 63
 
64
+    /**
65
+     * @param string $vhost
66
+     * @param string $queue
67
+     */
64 68
     public function getMessages($vhost, $queue)
65 69
     {
66 70
         $count = 0;
@@ -84,6 +88,9 @@  discard block
 block discarded – undo
84 88
         return $result;
85 89
     }
86 90
 
91
+    /**
92
+     * @param string $endpoint
93
+     */
87 94
     private function call($endpoint, $method = 'GET', $params = null)
88 95
     {
89 96
         $ch = curl_init($this->baseUrl . $endpoint);
Please login to merge, or discard this patch.