format = $format; } /** * @inheritDoc */ public function getTextFormatter( $langCode ): ITextFormatter { if ( !isset( $this->textFormatters[$langCode] ) ) { $this->textFormatters[$langCode] = new TextFormatter( $langCode, new Converter(), $this->format ); } return $this->textFormatters[$langCode]; } }