Completed
Pull Request — master (#1759)
by Ema
02:21
created
tests/MappingTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
                 'properties' => [
192 192
                     'titulo' => ['type' => 'text', 'copy_to' => 'testall', 'boost' => 1.0],
193 193
                     'contenido' => ['type' => 'text', 'copy_to' => 'testall', 'boost' => 1.0],
194
-                    'testall' => ['type' => 'text',  'boost' => 1.0],
194
+                    'testall' => ['type' => 'text', 'boost' => 1.0],
195 195
                 ],
196 196
             ],
197 197
         ]);
Please login to merge, or discard this patch.
src/Transport/AwsAuthV4.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         $signer = new SignatureV4('es', $region);
44 44
         $credProvider = $this->getCredentialProvider();
45 45
 
46
-        return Middleware::mapRequest(function (RequestInterface $req) use (
46
+        return Middleware::mapRequest(function(RequestInterface $req) use (
47 47
             $signer,
48 48
             $credProvider
49 49
         ) {
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
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
         $this->assertEquals('AnonCoin', $index->getDocument(1)->get('name'));
164 164
         $this->assertEquals('iXcoin', $index->getDocument(2)->get('name'));
165 165
 
166
-        $ixCoin->setIndex(null);  // Make sure the index gets set properly if missing
166
+        $ixCoin->setIndex(null); // Make sure the index gets set properly if missing
167 167
         $index->deleteDocuments([$anonCoin, $ixCoin]);
168 168
 
169 169
         $this->expectException(NotFoundException::class);
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
         $count = 0;
377 377
 
378 378
         // Callback function which verifies that disabled connection objects are returned
379
-        $callback = function (Connection $connection, \Exception $exception, Client $client) use (&$count) {
379
+        $callback = function(Connection $connection, \Exception $exception, Client $client) use (&$count) {
380 380
             $this->assertInstanceOf(Connection::class, $connection);
381 381
             $this->assertInstanceOf(ConnectionException::class, $exception);
382 382
             $this->assertInstanceOf(Client::class, $client);
Please login to merge, or discard this patch.