@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | */ |
| 135 | 135 | public function merge(GeoAnalysisResult $other): self |
| 136 | 136 | { |
| 137 | - $this->places->each(function (GeoAnalysisResultItem $item) use ($other): void { |
|
| 137 | + $this->places->each(function(GeoAnalysisResultItem $item) use ($other): void { |
|
| 138 | 138 | if ($other->places->has($item->key())) { |
| 139 | 139 | $item->place()->exclude( |
| 140 | 140 | $item->place()->isExcluded() |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | } |
| 144 | 144 | }); |
| 145 | 145 | |
| 146 | - $other->places->each(function (GeoAnalysisResultItem $item): void { |
|
| 146 | + $other->places->each(function(GeoAnalysisResultItem $item): void { |
|
| 147 | 147 | if (!$this->places->has($item->key())) { |
| 148 | 148 | $this->addPlace($item->place()); |
| 149 | 149 | } |