diff options
author | Thiemo Kreuz <thiemo.kreuz@wikimedia.de> | 2020-07-23 11:41:58 +0200 |
---|---|---|
committer | Thiemo Kreuz (WMDE) <thiemo.kreuz@wikimedia.de> | 2020-07-23 16:09:41 +0000 |
commit | fd7363a1e17bbd4760bfe741c5b4d873ec1a0eb3 (patch) | |
tree | 7c2f851b5e98c35950fb09e8789ab72197474f92 /includes/watcheditem | |
parent | 3a1faac3764ecae8dde813bd67a5a8e8f4975a85 (diff) | |
download | mediawikicore-fd7363a1e17bbd4760bfe741c5b4d873ec1a0eb3.tar.gz mediawikicore-fd7363a1e17bbd4760bfe741c5b4d873ec1a0eb3.zip |
Fix broken PHPDoc comments that don't start with /**
Change-Id: I8db56ff0f73873864dde260e51adcd729aa74e94
Diffstat (limited to 'includes/watcheditem')
-rw-r--r-- | includes/watcheditem/WatchedItemStore.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/watcheditem/WatchedItemStore.php b/includes/watcheditem/WatchedItemStore.php index 78bb1dee9755..fc62c47337da 100644 --- a/includes/watcheditem/WatchedItemStore.php +++ b/includes/watcheditem/WatchedItemStore.php @@ -630,7 +630,7 @@ class WatchedItemStore implements WatchedItemStoreInterface, StatsdAwareInterfac $watcherCounts = []; foreach ( $targetsWithVisitThresholds as list( $target ) ) { - /* @var LinkTarget $target */ + /** @var LinkTarget $target */ $watcherCounts[$target->getNamespace()][$target->getDBkey()] = 0; } @@ -659,7 +659,7 @@ class WatchedItemStore implements WatchedItemStoreInterface, StatsdAwareInterfac $missingTargets[] = $target; continue; } - /* @var LinkTarget $target */ + /** @var LinkTarget $target */ $namespaceConds[$target->getNamespace()][] = $db->makeList( [ 'wl_title = ' . $db->addQuotes( $target->getDBkey() ), $db->makeList( [ |