Skip to content

Commit

Permalink
Merge pull request #39339 from nextcloud/fix/noid/d404-nosearch
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelklehr committed Jul 13, 2023
2 parents c3c58b6 + f2642fc commit 1d40f86
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/private/Files/Node/NonExistingFolder.php
Expand Up @@ -154,6 +154,10 @@ public function searchByTag($tag, $userId) {
throw new NotFoundException();
}

public function searchBySystemTag(string $tagName, string $userId, int $limit = 0, int $offset = 0): array {
throw new NotFoundException();
}

public function getById($id) {
throw new NotFoundException();
}
Expand Down

0 comments on commit 1d40f86

Please sign in to comment.