diff options
author | Umherirrender <umherirrender_de.wp@web.de> | 2022-07-31 02:02:18 +0200 |
---|---|---|
committer | Umherirrender <umherirrender_de.wp@web.de> | 2022-11-03 18:55:47 +0100 |
commit | 1b342a889388da44c084809e65854f307a009ba9 (patch) | |
tree | 4a9f766a6fa70cd155f6586b1d6546d52002289a /includes/page/PageReferenceValue.php | |
parent | 5b703126e52c417d870f81d935bfa1d452d559da (diff) | |
download | mediawikicore-1b342a889388da44c084809e65854f307a009ba9.tar.gz mediawikicore-1b342a889388da44c084809e65854f307a009ba9.zip |
Various doc fixes about false and null on method arguments/return types
Doc-only changes
Change-Id: Ice974b3ba41708859dfe646e94b31c5ebbf26410
Diffstat (limited to 'includes/page/PageReferenceValue.php')
-rw-r--r-- | includes/page/PageReferenceValue.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/page/PageReferenceValue.php b/includes/page/PageReferenceValue.php index a242c0da3507..52e9016b6085 100644 --- a/includes/page/PageReferenceValue.php +++ b/includes/page/PageReferenceValue.php @@ -51,13 +51,13 @@ class PageReferenceValue implements PageReference { /** @var string */ private $dbKey; - /** @var bool|string */ + /** @var string|false */ private $wikiId; /** * @param int $namespace A valid namespace ID. Validation is the caller's responsibility! * @param string $dbKey A valid DB key. Validation is the caller's responsibility! - * @param string|bool $wikiId The Id of the wiki this page belongs to, + * @param string|false $wikiId The Id of the wiki this page belongs to, * or self::LOCAL for the local wiki. */ public function __construct( int $namespace, string $dbKey, $wikiId ) { |