Completed
Pull Request — master (#19)
by Michal
03:25
created
app/components/Breadcrumb/BreadcrumbControl.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
 
17 17
     private $item;
18 18
 
19
+    /**
20
+     * @param string|null $driver
21
+     */
19 22
     public function __construct($driver, $database, $type, $table, $item)
20 23
     {
21 24
         parent::__construct();
Please login to merge, or discard this patch.
app/Core/Forms/FilterForm/FilterForm.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -102,6 +102,9 @@  discard block
 block discarded – undo
102 102
         }
103 103
     }
104 104
 
105
+    /**
106
+     * @param Form $form
107
+     */
105 108
     private function addSortingFields($form)
106 109
     {
107 110
         $sortingItems = [];
@@ -128,6 +131,9 @@  discard block
 block discarded – undo
128 131
         return $sortingContainer;
129 132
     }
130 133
 
134
+    /**
135
+     * @param Form $form
136
+     */
131 137
     private function addFilterFields($form)
132 138
     {
133 139
         $filterContainer = $form->addContainer('filter');
Please login to merge, or discard this patch.
app/Core/LoginForm.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -24,6 +24,10 @@
 block discarded – undo
24 24
 
25 25
     private $locale;
26 26
 
27
+    /**
28
+     * @param string $driver
29
+     * @param string $locale
30
+     */
27 31
     public function __construct(ITranslator $translator, DriverStorage $driverStorage, CredentialsStorageInterface $credentialsStorage, $driver, $locale)
28 32
     {
29 33
         parent::__construct();
Please login to merge, or discard this patch.
app/Drivers/RabbitMQ/RabbitMQManagementApiClient.php 1 patch
Doc Comments   +8 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,10 @@  discard block
 block discarded – undo
84 88
         return $result;
85 89
     }
86 90
 
91
+    /**
92
+     * @param string $endpoint
93
+     * @param string $params
94
+     */
87 95
     private function call($endpoint, $method = 'GET', $params = null)
88 96
     {
89 97
         $ch = curl_init($this->baseUrl . $endpoint);
Please login to merge, or discard this patch.
app/Drivers/Redis/Forms/RedisCreateSetForm.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
 
14 14
     private $key;
15 15
 
16
+    /**
17
+     * @param string|null $key
18
+     */
16 19
     public function __construct(RedisProxy $connection, $key)
17 20
     {
18 21
         $this->connection = $connection;
Please login to merge, or discard this patch.
app/Drivers/Redis/Forms/RedisHashKeyItemForm.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 
16 16
     private $key;
17 17
 
18
+    /**
19
+     * @param string $hash
20
+     */
18 21
     public function __construct(RedisProxy $connection, $hash, $key)
19 22
     {
20 23
         $this->connection = $connection;
Please login to merge, or discard this patch.
app/Drivers/Redis/Forms/RedisSetMemberForm.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 
16 16
     private $member;
17 17
 
18
+    /**
19
+     * @param string $key
20
+     */
18 21
     public function __construct(RedisProxy $connection, $key, $member)
19 22
     {
20 23
         $this->connection = $connection;
Please login to merge, or discard this patch.
app/Drivers/Redis/RedisDataManager.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -289,6 +289,9 @@  discard block
 block discarded – undo
289 289
         $this->connection->select($database);
290 290
     }
291 291
 
292
+    /**
293
+     * @param integer $db
294
+     */
292 295
     private function databaseInfo($keyspace, $db)
293 296
     {
294 297
         $info = [
@@ -327,6 +330,9 @@  discard block
 block discarded – undo
327 330
         return $results;
328 331
     }
329 332
 
333
+    /**
334
+     * @param string $function
335
+     */
330 336
     private function headers($function)
331 337
     {
332 338
         if ($function === 'get' || $function === 'hget') {
@@ -344,6 +350,9 @@  discard block
 block discarded – undo
344 350
         return [];
345 351
     }
346 352
 
353
+    /**
354
+     * @param string $function
355
+     */
347 356
     private function getItems($function, $rows)
348 357
     {
349 358
         $items = [];
Please login to merge, or discard this patch.
app/Drivers/RabbitMQ/Forms/RabbitMQMessageForm.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
 
14 14
     private $queue;
15 15
 
16
+    /**
17
+     * @param string $queue
18
+     */
16 19
     public function __construct(AMQPStreamConnection $connection, $queue = null)
17 20
     {
18 21
         $this->connection = $connection;
Please login to merge, or discard this patch.