Completed
Pull Request — master (#1804)
by Pierre
04:42 queued 02:06
created
src/Bulk.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Elastica\Bulk\Action\AbstractDocument as AbstractDocumentAction;
7 7
 use Elastica\Bulk\Response as BulkResponse;
8 8
 use Elastica\Bulk\ResponseSet;
9
-use Elastica\Exception\Bulk\ResponseException;
10 9
 use Elastica\Exception\Bulk\ResponseException as BulkResponseException;
11 10
 use Elastica\Exception\InvalidException;
12 11
 use Elastica\Script\AbstractScript;
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.
src/QueryBuilder/DSL/Aggregation.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -430,12 +430,12 @@
 block discarded – undo
430 430
         return new DiversifiedSampler($name);
431 431
     }
432 432
 
433
-	/**
434
-	 * composite aggregation
435
-	 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-composite-aggregation.html
436
-	 */
433
+    /**
434
+     * composite aggregation
435
+     * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-composite-aggregation.html
436
+     */
437 437
     public function composite(string $name): Composite
438 438
     {
439
-    	return new Composite($name);
439
+        return new Composite($name);
440 440
     }
441 441
 }
Please login to merge, or discard this patch.