mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-12-02 20:16:41 +00:00
34011b7a07
Will be used to parse selflinks in the future. Change-Id: I2bc29d1c5c69cb6309f582f162f9af7d96ce8913
24 lines
556 B
PHP
24 lines
556 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools\Tests;
|
|
|
|
use MediaWiki\Extension\DiscussionTools\CommentFormatter;
|
|
use MediaWiki\Extension\DiscussionTools\CommentParser;
|
|
use Title;
|
|
use Wikimedia\Parsoid\DOM\Element;
|
|
|
|
class MockCommentFormatter extends CommentFormatter {
|
|
|
|
public static $data;
|
|
|
|
/**
|
|
* @param Element $container
|
|
* @param Title $title
|
|
* @return CommentParser
|
|
*/
|
|
protected static function getParser( Element $container, Title $title ): CommentParser {
|
|
return TestUtils::createParser( $container, $title, static::$data );
|
|
}
|
|
|
|
}
|