factory = $factory; $this->repositoryQuery = $repositoryQuery; $this->store = $store; $this->referenceGenerator = $referenceGenerator; } public static function getEntityFqcn() { return Document::class; } public function getFactory(): DocumentFactory { return $this->factory; } public function getRepositoryQuery(): DocumentRepositoryQuery { return $this->repositoryQuery; } public function getStore(): DocumentStore { $this->store->resetContext(); return $this->store; } public function getReferenceGenerator(): DocumentReferenceGenerator { return $this->referenceGenerator; } }