Skip to content

Commit 73a12d3

Browse files
committed
trailing commas
1 parent 427fe6d commit 73a12d3

File tree

236 files changed

+720
-258
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+720
-258
lines changed

src/Aggregation/LeafAggregationCollection.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ class LeafAggregationCollection implements LeafAggregationInterface, \IteratorAg
2525

2626

2727
public function __construct(
28-
string $name
29-
, \Spameri\ElasticQuery\Filter\FilterCollection|null $filter
30-
, \Spameri\ElasticQuery\Aggregation\LeafAggregationInterface ... $aggregations,
28+
string $name,
29+
\Spameri\ElasticQuery\Filter\FilterCollection|null $filter,
30+
\Spameri\ElasticQuery\Aggregation\LeafAggregationInterface ... $aggregations,
3131
)
3232
{
3333
if ( ! $filter) {

src/Aggregation/LeafAggregationInterface.php

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types = 1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Spameri\ElasticQuery\Aggregation;
46

src/Aggregation/Max.php

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types = 1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Spameri\ElasticQuery\Aggregation;
46

src/Aggregation/Min.php

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types = 1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Spameri\ElasticQuery\Aggregation;
46

src/Aggregation/Nested.php

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types = 1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Spameri\ElasticQuery\Aggregation;
46

src/Aggregation/RangeValueCollection.php

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types = 1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Spameri\ElasticQuery\Aggregation;
46

src/Aggregation/Term.php

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types = 1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Spameri\ElasticQuery\Aggregation;
46

src/Aggregation/Terms/Order.php

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types = 1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Spameri\ElasticQuery\Aggregation\Terms;
46

src/Aggregation/Terms/OrderCollection.php

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types = 1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Spameri\ElasticQuery\Aggregation\Terms;
46

src/Aggregation/TopHits.php

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types = 1);
1+
<?php
2+
3+
declare(strict_types = 1);
24

35
namespace Spameri\ElasticQuery\Aggregation;
46

0 commit comments

Comments
 (0)