@@ -105,7 +105,7 @@ |
||
105 | 105 | return array_filter( |
106 | 106 | $this->bag, |
107 | 107 | /** @var BuilderInterface $builder */ |
108 | - function (BuilderInterface $builder) use ($type) { |
|
108 | + function(BuilderInterface $builder) use ($type) { |
|
109 | 109 | return $type === null || $builder->getType() == $type; |
110 | 110 | } |
111 | 111 | ); |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | if (!empty($filteredData)) { |
59 | 59 | uasort( |
60 | 60 | $filteredData, |
61 | - function (OrderedNormalizerInterface $a, OrderedNormalizerInterface $b) { |
|
61 | + function(OrderedNormalizerInterface $a, OrderedNormalizerInterface $b) { |
|
62 | 62 | return $a->getOrder() > $b->getOrder(); |
63 | 63 | } |
64 | 64 | ); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | { |
81 | 81 | return array_filter( |
82 | 82 | $array, |
83 | - function ($value) { |
|
83 | + function($value) { |
|
84 | 84 | return $value instanceof OrderedNormalizerInterface; |
85 | 85 | } |
86 | 86 | ); |
@@ -58,7 +58,7 @@ |
||
58 | 58 | $array = is_array($array) ? array_merge($array, $agg->getParameters()) : $array; |
59 | 59 | |
60 | 60 | $this->sources[] = [ |
61 | - $agg->getName() => [ $agg->getType() => $array ] |
|
61 | + $agg->getName() => [$agg->getType() => $array] |
|
62 | 62 | ]; |
63 | 63 | |
64 | 64 | return $this; |
@@ -85,7 +85,7 @@ |
||
85 | 85 | |
86 | 86 | private function getPathType(): ?string |
87 | 87 | { |
88 | - return match ($this->getType()) { |
|
88 | + return match($this->getType()) { |
|
89 | 89 | 'nested' => 'path', |
90 | 90 | 'parent' => 'type', |
91 | 91 | default => null |
@@ -25,7 +25,7 @@ |
||
25 | 25 | public function __construct( |
26 | 26 | private BuilderInterface $positive, |
27 | 27 | private BuilderInterface $negative, |
28 | - private int|float $negativeBoost |
|
28 | + private int | float $negativeBoost |
|
29 | 29 | ) { |
30 | 30 | |
31 | 31 | } |
@@ -38,7 +38,7 @@ |
||
38 | 38 | |
39 | 39 | array_walk( |
40 | 40 | $queries, |
41 | - function (BuilderInterface $query) use ($type): void { |
|
41 | + function(BuilderInterface $query) use ($type): void { |
|
42 | 42 | $this->add($query, $type); |
43 | 43 | } |
44 | 44 | ); |
@@ -453,7 +453,7 @@ |
||
453 | 453 | return $this; |
454 | 454 | } |
455 | 455 | |
456 | - public function addUriParam(string $name, string|array|bool $value): static |
|
456 | + public function addUriParam(string $name, string | array | bool $value): static |
|
457 | 457 | { |
458 | 458 | if (in_array( |
459 | 459 | $name, |
@@ -27,7 +27,7 @@ |
||
27 | 27 | |
28 | 28 | public function __construct( |
29 | 29 | private string $name, |
30 | - private string|array $field, |
|
30 | + private string | array $field, |
|
31 | 31 | private ?array $missing = null, |
32 | 32 | private ?string $mode = null |
33 | 33 | ) { |
@@ -68,7 +68,7 @@ |
||
68 | 68 | return $this; |
69 | 69 | } |
70 | 70 | |
71 | - public function removeRange(int|float|null $from, int|float|null $to): bool |
|
71 | + public function removeRange(int | float | null $from, int | float | null $to): bool |
|
72 | 72 | { |
73 | 73 | foreach ($this->ranges as $key => $range) { |
74 | 74 | if (array_diff_assoc(array_filter(['from' => $from, 'to' => $to]), $range) === []) { |