factory = $factory; $this->definition = $definition; $this->repositoryQuery = $repositoryQuery; $this->store = $store; $this->settingSolver = $settingSolver; } public function getFactory(): SectionSettingFactory { return $this->factory; } public function getDefinition(): SectionSettingDefinition { return $this->definition; } public function getRepositoryQuery(): SectionSettingRepositoryQuery { return $this->repositoryQuery; } public function getStore(): SectionSettingStore { $this->store->resetContext(); return $this->store; } public function getSettingSolver(): SettingSolver { return $this->settingSolver; } }