Completed
Pull Request — master (#1874)
by romain
02:42
created
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/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.
src/AbstractUpdateAction.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     }
189 189
 
190 190
     /**
191
-     * @param array|string $fields
191
+     * @param string $fields
192 192
      *
193 193
      * @return $this
194 194
      */
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
     }
394 394
 
395 395
     /**
396
-     * @param array $fields if empty array all options will be returned
396
+     * @param string[] $fields if empty array all options will be returned
397 397
      *
398 398
      * @return array
399 399
      */
Please login to merge, or discard this patch.
src/Node/Info.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      * Create new info object for node.
54 54
      *
55 55
      * @param BaseNode $node   Node object
56
-     * @param array    $params List of params to return. Can be: settings, os, process, jvm, thread_pool, network, transport, http
56
+     * @param string[]    $params List of params to return. Can be: settings, os, process, jvm, thread_pool, network, transport, http
57 57
      */
58 58
     public function __construct(BaseNode $node, array $params = [])
59 59
     {
Please login to merge, or discard this patch.
tests/Transport/HttpTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -213,6 +213,9 @@
 block discarded – undo
213 213
         $this->assertArrayHasKey('acknowledged', $createIndexResponse->getData());
214 214
     }
215 215
 
216
+    /**
217
+     * @param string $url
218
+     */
216 219
     protected function checkProxy($url): void
217 220
     {
218 221
         $url = \parse_url($url);
Please login to merge, or discard this patch.
src/Aggregation/DateHistogram.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      *
34 34
      * @deprecated Deprecated since 7.1.0
35 35
      *
36
-     * @param int|string $interval
36
+     * @param string $interval
37 37
      *
38 38
      * @return $this
39 39
      */
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * Set the fixed interval by which documents will be bucketed.
49 49
      *
50
-     * @param int|string $interval
50
+     * @param string $interval
51 51
      *
52 52
      * @return $this
53 53
      */
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     /**
60 60
      * Set the calendar interval by which documents will be bucketed.
61 61
      *
62
-     * @param int|string $interval
62
+     * @param string $interval
63 63
      *
64 64
      * @return $this
65 65
      */
Please login to merge, or discard this patch.