X-Git-Url: http://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Fparser%2FParser.php;h=ae77c4ef03c7f684e23d939b95abc89ff301b5d7;hp=ec1628f8d0f54b592aa441dc6bef42ad00e7b9c7;hb=9ddd146c262806e993ea66994f367a0a795e762d;hpb=cf73db55a3a982af47a433d4c2348256919b6904 diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index ec1628f8d0..ae77c4ef03 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -228,7 +228,7 @@ class Parser { public $mOptions; /** - * @var Title + * @var Title|null Beware - this is not always set */ public $mTitle; # Title context, used for self-link rendering and similar things public $mOutputType; # Output type, one of the OT_xxx constants @@ -906,11 +906,11 @@ class Parser { /** * Set the context title * - * @param Title $t + * @param Title|null $t */ - public function setTitle( $t ) { + public function setTitle( Title $t = null ) { if ( !$t ) { - $t = Title::newFromText( 'NO TITLE' ); + $t = Title::makeTitle( NS_SPECIAL, 'Badtitle/Parser' ); } if ( $t->hasFragment() ) { @@ -926,7 +926,7 @@ class Parser { * * @return Title|null */ - public function getTitle() { + public function getTitle() : ?Title { return $this->mTitle; } @@ -934,9 +934,9 @@ class Parser { * Accessor/mutator for the Title object * * @param Title|null $x Title object or null to just get the current one - * @return Title + * @return Title|null */ - public function Title( $x = null ) { + public function Title( Title $x = null ) : ?Title { return wfSetVar( $this->mTitle, $x ); }