X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fwatcheditem%2FNoWriteWatchedItemStore.php;h=f4e3af2370f08cb117800188e327979e7e2bdfe1;hb=c44bba66c96928da76654a0972bdebb5da640878;hp=86e7be855ef085e4f04b119cc50c442429f3018f;hpb=51eba1974c51c4874eb64d639fa5ae0eb56ef0d4;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/watcheditem/NoWriteWatchedItemStore.php b/includes/watcheditem/NoWriteWatchedItemStore.php index 86e7be855e..f4e3af2370 100644 --- a/includes/watcheditem/NoWriteWatchedItemStore.php +++ b/includes/watcheditem/NoWriteWatchedItemStore.php @@ -142,4 +142,9 @@ class NoWriteWatchedItemStore implements WatchedItemStoreInterface { public function clearUserWatchedItemsUsingJobQueue( User $user ) { throw new DBReadOnlyError( null, 'The watchlist is currently readonly.' ); } + + public function removeWatchBatchForUser( User $user, array $titles ) { + throw new DBReadOnlyError( null, 'The watchlist is currently readonly.' ); + } + }