*/ namespace MediaWiki\Extension\Scribunto; use TextContent; /** * Represents the content of a Scribunto script page */ class ScribuntoContent extends TextContent { /** * @param string $text */ public function __construct( $text ) { parent::__construct( $text, CONTENT_MODEL_SCRIBUNTO ); } }