From 8db655e94b9c8ab54ac910ee0a3faf153c259b4e Mon Sep 17 00:00:00 2001 From: Tom Arrow Date: Sat, 9 Aug 2014 13:31:02 +0100 Subject: [PATCH] Correct variable types in phpdoc Change-Id: I1a57024868fa47d9537585f1bb738d6f7c725c7a in: LocalisationCache.php and ImageQueryPage.php --- includes/cache/LocalisationCache.php | 2 +- includes/specialpage/ImageQueryPage.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/cache/LocalisationCache.php b/includes/cache/LocalisationCache.php index eb6a57a3cd..c0c5977d1e 100644 --- a/includes/cache/LocalisationCache.php +++ b/includes/cache/LocalisationCache.php @@ -773,7 +773,7 @@ class LocalisationCache { * * Returns true if any data from the extension array was used, false * otherwise. - * @param string $codeSequence + * @param array $codeSequence * @param string $key * @param mixed $value * @param mixed $fallbackValue diff --git a/includes/specialpage/ImageQueryPage.php b/includes/specialpage/ImageQueryPage.php index b0266cbaf7..3ff281f952 100644 --- a/includes/specialpage/ImageQueryPage.php +++ b/includes/specialpage/ImageQueryPage.php @@ -36,7 +36,7 @@ abstract class ImageQueryPage extends QueryPage { * @param OutputPage $out OutputPage to print to * @param Skin $skin User skin to use [unused] * @param DatabaseBase $dbr (read) connection to use - * @param int $res Result pointer + * @param ResultWrapper $res Result pointer * @param int $num Number of available result rows * @param int $offset Paging offset */ -- 2.20.1