Completed
Pull Request — master (#1804)
by Pierre
02:34
created
src/Document.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     /**
77 77
      * Get the value of the given field.
78 78
      *
79
-     * @param mixed $key
79
+     * @param string $key
80 80
      *
81 81
      * @throws InvalidException If the given field does not exist
82 82
      *
Please login to merge, or discard this patch.
src/Index.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
     /**
155 155
      * Update entries in the db based on a query.
156 156
      *
157
-     * @param array|Query|string $query   Query object or array
157
+     * @param string $query   Query object or array
158 158
      * @param AbstractScript     $script  Script
159 159
      * @param array              $options Optional params
160 160
      *
Please login to merge, or discard this patch.
src/Query.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
      * NOTICE php will encode modified(or named keys) array into object format in json format request
213 213
      * so the fields array must a sequence(list) type of array.
214 214
      *
215
-     * @param array $fields Fields to be returned
215
+     * @param string[] $fields Fields to be returned
216 216
      *
217 217
      * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-stored-fields
218 218
      */
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
     /**
350 350
      * Sets the _source field to be returned with every hit.
351 351
      *
352
-     * @param array|bool $params Fields to be returned or false to disable source
352
+     * @param boolean $params Fields to be returned or false to disable source
353 353
      *
354 354
      * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-source-filtering
355 355
      */
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
     /**
362 362
      * Sets a post_filter to the current query.
363 363
      *
364
-     * @param AbstractQuery|array $filter
364
+     * @param AbstractQuery $filter
365 365
      *
366 366
      * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#request-body-search-post-filter
367 367
      */
Please login to merge, or discard this patch.
tests/Aggregation/TopHitsTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -399,6 +399,9 @@
 block discarded – undo
399 399
         return $index;
400 400
     }
401 401
 
402
+    /**
403
+     * @param TopHits $innerAggr
404
+     */
402 405
     protected function getOuterAggregationResult($innerAggr)
403 406
     {
404 407
         $outerAggr = new Terms('top_tags');
Please login to merge, or discard this patch.
tests/Base.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -47,6 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     /**
49 49
      * @param array $params Additional configuration params. Host and Port are already set
50
+     * @param \Closure $callback
50 51
      */
51 52
     protected function _getClient(array $params = [], ?callable $callback = null, ?LoggerInterface $logger = null): Client
52 53
     {
@@ -90,6 +91,9 @@  discard block
 block discarded – undo
90 91
         return 'http://'.$proxyHost.':8001';
91 92
     }
92 93
 
94
+    /**
95
+     * @param string $name
96
+     */
93 97
     protected function _createIndex(?string $name = null, bool $delete = true, int $shards = 1): Index
94 98
     {
95 99
         $name = $name ?: static::buildUniqueId();
@@ -143,6 +147,9 @@  discard block
 block discarded – undo
143 147
         return \substr($data['version']['number'], 0, 1);
144 148
     }
145 149
 
150
+    /**
151
+     * @param string $version
152
+     */
146 153
     protected function _checkVersion($version): void
147 154
     {
148 155
         $data = $this->_getClient()->request('/')->getData();
Please login to merge, or discard this patch.
tests/Transport/GuzzleTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -139,6 +139,9 @@
 block discarded – undo
139 139
         $client->request('_status', 'GET');
140 140
     }
141 141
 
142
+    /**
143
+     * @param string $url
144
+     */
142 145
     protected function checkProxy($url): void
143 146
     {
144 147
         $url = \parse_url($url);
Please login to merge, or discard this patch.
src/Aggregation/WeightedAvg.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * Set the weight for this aggregation.
52 52
      *
53
-     * @param mixed $missing
53
+     * @param integer $missing
54 54
      *
55 55
      * @return $this
56 56
      */
@@ -98,7 +98,6 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * Set the value_type for this aggregation.
100 100
      *
101
-     * @param string $format
102 101
      * @param mixed  $valueType
103 102
      *
104 103
      * @return $this
Please login to merge, or discard this patch.