factory = $factory; $this->solver = $solver; $this->repositoryQuery = $repositoryQuery; $this->store = $store; } public function getFactory(): ProductCategoryFactory { return $this->factory; } public function getSolver(): ProductCategorySolver { return $this->solver; } public function getRepositoryQuery(): ProductCategoryRepositoryQuery { return $this->repositoryQuery; } public function getStore(): ProductCategoryStore { return $this->store; } }