Skip to content

Commit 7a38671

Browse files
committed
Change getProviders() to return collection
1 parent 59a2c5c commit 7a38671

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ProviderAndDumperAggregator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,9 +169,9 @@ public function using(string $name) : self
169169
return $this;
170170
}
171171

172-
public function getProviders() : array
172+
public function getProviders() : Collection
173173
{
174-
return $this->aggregator->getProviders();
174+
return collect($this->aggregator->getProviders());
175175
}
176176

177177
protected function getProvider()

0 commit comments

Comments
 (0)