Skip to content

Commit c404104

Browse files
committed
Fix accidental removal of protected limit property
1 parent fe03b38 commit c404104

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ProviderAndDumperAggregator.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
class ProviderAndDumperAggregator
2929
{
3030
protected $aggregator;
31+
protected $limit;
3132
protected $results;
3233

3334
public function __construct()
@@ -141,6 +142,7 @@ public function limit(int $limit) : self
141142
{
142143
$this->aggregator = new ProviderAggregator(null, $limit);
143144
$this->registerProvidersFromConfig(collect(config('geocoder.providers')));
145+
$this->limit = $limit;
144146

145147
return $this;
146148
}

0 commit comments

Comments
 (0)