We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00ede74 commit fe03b38Copy full SHA for fe03b38
src/ProviderAndDumperAggregator.php
@@ -28,13 +28,11 @@
28
class ProviderAndDumperAggregator
29
{
30
protected $aggregator;
31
- protected $limit;
32
protected $results;
33
34
- public function __construct(int $limit = null)
+ public function __construct()
35
36
- $this->aggregator = new ProviderAggregator($limit);
37
- $this->limit = $limit;
+ $this->aggregator = new ProviderAggregator();
38
$this->results = collect();
39
}
40
@@ -143,7 +141,6 @@ public function limit(int $limit) : self
143
141
144
142
$this->aggregator = new ProviderAggregator(null, $limit);
145
$this->registerProvidersFromConfig(collect(config('geocoder.providers')));
146
147
148
return $this;
149
0 commit comments