factory = $factory; $this->repositoryQuery = $repositoryQuery; $this->store = $store; } public static function getEntityFqcn() { return Reminder::class; } public function getFactory(): ReminderFactory { return $this->factory; } public function getRepositoryQuery(): ReminderRepositoryQuery { return $this->repositoryQuery; } public function getStore(): ReminderStore { return $this->store; } }