$providers */ public function __construct(iterable $providers) { foreach ($providers as $item) { $this->providers[get_class($item)] = $item; } } /** * @return SearchProviderInterface[] */ public function getProviders(): array { return $this->providers; } }