factory = $factory; $this->solver = $solver; $this->repositoryQuery = $repositoryQuery; $this->store = $store; } public function getFactory(): ProductFactory { return $this->factory; } public function getSolver(): ProductSolver { return $this->solver; } public function getRepositoryQuery(): ProductRepositoryQuery { return $this->repositoryQuery; } public function getStore(): ProductStore { $this->store->resetContext(); return $this->store; } }