From: jenkins-bot Date: Mon, 6 May 2019 19:59:46 +0000 (+0000) Subject: Merge "Consolidate duplicated unseen change logic and fix inconsistent code" X-Git-Tag: 1.34.0-rc.0~1790 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/Bar?a=commitdiff_plain;h=57609f4ded4c9ac529d7fbfd30d3585372fcc0ce;p=lhc%2Fweb%2Fwiklou.git Merge "Consolidate duplicated unseen change logic and fix inconsistent code" --- 57609f4ded4c9ac529d7fbfd30d3585372fcc0ce diff --cc includes/watcheditem/WatchedItemStoreInterface.php index 54c02d7bca,b6d7b68035..5ff29d0d5d --- a/includes/watcheditem/WatchedItemStoreInterface.php +++ b/includes/watcheditem/WatchedItemStoreInterface.php @@@ -339,10 -335,9 +339,10 @@@ interface WatchedItemStoreInterface * Usage of this method should be limited to WatchedItem* classes * * @param string|null $timestamp Value of wl_notificationtimestamp from the DB - * @param User $user + * @param UserIdentity $user * @param LinkTarget $target - * @return string TS_MW timestamp or null + * @return string|null TS_MW timestamp or null if all revision were seen */ - public function getLatestNotificationTimestamp( $timestamp, User $user, LinkTarget $target ); + public function getLatestNotificationTimestamp( + $timestamp, UserIdentity $user, LinkTarget $target ); }