Fix unable to forget a shared note deleted by the owner. Issue #72

This commit is contained in:
Matias De lellis
2022-05-31 15:39:35 -03:00
parent 38860f784f
commit 073a8dbda1
5 changed files with 9 additions and 12 deletions

View File

@@ -73,7 +73,7 @@ class NoteShareMapper extends QBMapper {
->execute();
}
public function forgetShareByNoteIdAndSharedUser(int $noteId, string $userId) {
public function forgetShareByNoteIdAndSharedUser(int $noteId, string $userId): bool {
try {
$noteShare = $this->findSharesByNoteIsAndSharedUser($noteId, $userId);
} catch (DoesNotExistException $e) {
@@ -86,7 +86,7 @@ class NoteShareMapper extends QBMapper {
/**
* @return bool
*/
public function existsByNoteAndSharedUser(int $noteId, string $userId) {
public function existsByNoteAndSharedUser(int $noteId, string $userId): bool {
try {
$this->findSharesByNoteIsAndSharedUser($noteId, $userId);
} catch (DoesNotExistException $e) {