uawdijnntqw1x1x1
IP : 216.73.216.54
Hostname : neogeopocket.gameplayer.club
Kernel : Linux neogeopocket.gameplayer.club 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
www
/
html
/
1c732
/
..
/
mediawiki
/
includes
/
Revision
/
..
/
debug
/
..
/
Message
/
MessageFormatterFactory.php
/
/
<?php namespace MediaWiki\Message; use Wikimedia\Message\IMessageFormatterFactory; use Wikimedia\Message\ITextFormatter; /** * The MediaWiki-specific implementation of IMessageFormatterFactory */ class MessageFormatterFactory implements IMessageFormatterFactory { /** @var string */ private $format; /** @var array */ private $textFormatters = []; /** * Required parameters may be added to this function without deprecation. * External callers should use MediaWikiServices::getMessageFormatterFactory(). * * @param string $format which if the Message::FORMAT_* to use in the formatters. * @internal */ public function __construct( string $format = Message::FORMAT_TEXT ) { $this->format = $format; } /** * @inheritDoc */ public function getTextFormatter( $langCode ): ITextFormatter { if ( !isset( $this->textFormatters[$langCode] ) ) { $this->textFormatters[$langCode] = new TextFormatter( $langCode, $this->format ); } return $this->textFormatters[$langCode]; } }
/var/www/html/1c732/../mediawiki/includes/Revision/../debug/../Message/MessageFormatterFactory.php