Merge pull request #39339 from nextcloud/fix/noid/d404-nosearch

This commit is contained in:
Marcel Klehr 2023-07-13 16:09:45 +02:00 committed by GitHub
commit 1d40f86d58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -154,6 +154,10 @@ class NonExistingFolder extends Folder {
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();
}