factory = $factory; $this->repositoryQuery = $repositoryQuery; $this->store = $store; $this->fieldDefinition = $fieldDefinition; } public static function getEntityFqcn() { return Page::class; } public function getFactory(): PageFactory { return $this->factory; } public function getRepositoryQuery(): PageRepositoryQuery { return $this->repositoryQuery; } public function getStore(): PageStore { return $this->store; } public function getFieldDefinition(): PageFieldDefinition { return $this->fieldDefinition; } }