Completed
Push — master ( e70161...98b2f9 )
by Ema
02:30
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/Query/IdsTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Elastica\Document;
6 6
 use Elastica\Index;
7 7
 use Elastica\Query\Ids;
8
-use Elastica\Query\Type;
9 8
 use Elastica\Test\Base as BaseTest;
10 9
 
11 10
 /**
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.
tests/StatusTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
 
98 98
         $indicesWithAlias = $status->getIndicesWithAlias($aliasName);
99 99
         $this->assertEquals([$indexName], \array_map(
100
-            function ($index) {
100
+            function($index) {
101 101
                 return $index->getName();
102 102
             },
103 103
             $indicesWithAlias
Please login to merge, or discard this patch.
tests/ClientFunctionalTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
         $this->assertEquals('AnonCoin', $index->getDocument(1)->get('name'));
173 173
         $this->assertEquals('iXcoin', $index->getDocument(2)->get('name'));
174 174
 
175
-        $ixCoin->setIndex(null);  // Make sure the index gets set properly if missing
175
+        $ixCoin->setIndex(null); // Make sure the index gets set properly if missing
176 176
         $index->deleteDocuments([$anonCoin, $ixCoin]);
177 177
 
178 178
         $this->expectException(NotFoundException::class);
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
         $count = 0;
386 386
 
387 387
         // Callback function which verifies that disabled connection objects are returned
388
-        $callback = function (Connection $connection, \Exception $exception, Client $client) use (&$count): void {
388
+        $callback = function(Connection $connection, \Exception $exception, Client $client) use (&$count): void {
389 389
             $this->assertInstanceOf(Connection::class, $connection);
390 390
             $this->assertInstanceOf(ConnectionException::class, $exception);
391 391
             $this->assertInstanceOf(Client::class, $client);
Please login to merge, or discard this patch.