chore(files_reminders): Remove unused get

Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
Christopher Ng 2025-01-24 14:27:53 -08:00 committed by provokateurin
parent e969d277b6
commit a09edbc8a0
No known key found for this signature in database

View file

@ -46,14 +46,6 @@ class ReminderService {
$this->cache = $this->cacheFactory->createDistributed('files_reminders');
}
/**
* @throws DoesNotExistException
*/
public function get(int $id): RichReminder {
$reminder = $this->reminderMapper->find($id);
return new RichReminder($reminder, $this->root);
}
/**
* @throws NodeNotFoundException
*/