Completed
Push — master ( 6d1120...3e38c4 )
by Michal
10s
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/Forms/RabbitMQMessageForm.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 
15 15
     private $queue;
16 16
 
17
+    /**
18
+     * @param string $queue
19
+     */
17 20
     public function __construct(AMQPStreamConnection $connection, $queue)
18 21
     {
19 22
         $this->connection = $connection;
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/RedisEditSetForm.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 $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   +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.