Merge "Watchlist: Commit after each batch watchlist insertion and removal"
[lhc/web/wiklou.git] / includes / watcheditem / NoWriteWatchedItemStore.php
index 86e7be8..f4e3af2 100644 (file)
@@ -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.' );
+       }
+
 }