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 fe03b38 commit c404104Copy full SHA for c404104
src/ProviderAndDumperAggregator.php
@@ -28,6 +28,7 @@
28
class ProviderAndDumperAggregator
29
{
30
protected $aggregator;
31
+ protected $limit;
32
protected $results;
33
34
public function __construct()
@@ -141,6 +142,7 @@ public function limit(int $limit) : self
141
142
143
$this->aggregator = new ProviderAggregator(null, $limit);
144
$this->registerProvidersFromConfig(collect(config('geocoder.providers')));
145
+ $this->limit = $limit;
146
147
return $this;
148
}
0 commit comments