2020-05-22 16:26:05 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools;
|
|
|
|
|
2020-09-16 12:06:14 +00:00
|
|
|
use JsonSerializable;
|
2021-11-18 22:30:26 +00:00
|
|
|
use LogicException;
|
|
|
|
use Title;
|
|
|
|
use Wikimedia\Parsoid\DOM\Element;
|
2021-07-29 02:16:15 +00:00
|
|
|
use Wikimedia\Parsoid\DOM\Node;
|
2020-07-22 18:25:34 +00:00
|
|
|
use Wikimedia\Parsoid\Utils\DOMCompat;
|
2020-07-29 23:57:51 +00:00
|
|
|
|
2020-06-25 12:23:17 +00:00
|
|
|
/**
|
|
|
|
* A thread item, either a heading or a comment
|
|
|
|
*/
|
2020-09-16 12:06:14 +00:00
|
|
|
abstract class ThreadItem implements JsonSerializable {
|
2020-07-20 21:15:03 +00:00
|
|
|
protected $type;
|
|
|
|
protected $range;
|
2020-07-29 23:57:51 +00:00
|
|
|
protected $rootNode;
|
2020-07-20 21:15:03 +00:00
|
|
|
protected $level;
|
2020-10-01 19:36:11 +00:00
|
|
|
protected $parent;
|
2020-11-02 18:35:38 +00:00
|
|
|
protected $warnings = [];
|
2020-05-22 16:26:05 +00:00
|
|
|
|
2021-02-12 19:16:13 +00:00
|
|
|
protected $name = null;
|
2020-07-20 21:15:03 +00:00
|
|
|
protected $id = null;
|
2020-10-21 15:52:04 +00:00
|
|
|
protected $legacyId = null;
|
2020-07-20 21:15:03 +00:00
|
|
|
protected $replies = [];
|
2020-05-22 16:26:05 +00:00
|
|
|
|
|
|
|
/**
|
2020-06-25 12:23:17 +00:00
|
|
|
* @param string $type `heading` or `comment`
|
2020-10-01 19:36:11 +00:00
|
|
|
* @param int $level Indentation level
|
2020-06-25 12:23:17 +00:00
|
|
|
* @param ImmutableRange $range Object describing the extent of the comment, including the
|
|
|
|
* signature and timestamp.
|
2020-05-22 16:26:05 +00:00
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
string $type, int $level, ImmutableRange $range
|
|
|
|
) {
|
|
|
|
$this->type = $type;
|
|
|
|
$this->level = $level;
|
|
|
|
$this->range = $range;
|
|
|
|
}
|
|
|
|
|
2020-09-16 12:06:14 +00:00
|
|
|
/**
|
|
|
|
* @return array JSON-serializable array
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function jsonSerialize(): array {
|
2020-10-21 15:52:04 +00:00
|
|
|
// The output of this method can end up in the HTTP cache (Varnish). Avoid changing it;
|
|
|
|
// and when doing so, ensure that frontend code can handle both the old and new outputs.
|
|
|
|
// See ThreadItem.static.newFromJSON in JS.
|
|
|
|
|
2020-09-16 12:06:14 +00:00
|
|
|
return [
|
|
|
|
'type' => $this->type,
|
|
|
|
'level' => $this->level,
|
|
|
|
'id' => $this->id,
|
2021-05-05 06:59:38 +00:00
|
|
|
'replies' => array_map( static function ( ThreadItem $comment ) {
|
2020-09-16 12:06:14 +00:00
|
|
|
return $comment->getId();
|
|
|
|
}, $this->replies )
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-07-20 14:13:59 +00:00
|
|
|
/**
|
|
|
|
* Get the list of authors in the comment tree below this thread item.
|
|
|
|
*
|
|
|
|
* Usually called on a HeadingItem to find all authors in a thread.
|
|
|
|
*
|
|
|
|
* @return string[] Author usernames
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getAuthorsBelow(): array {
|
2020-07-20 14:13:59 +00:00
|
|
|
$authors = [];
|
2021-05-05 06:59:38 +00:00
|
|
|
$getAuthorSet = static function ( ThreadItem $comment ) use ( &$authors, &$getAuthorSet ) {
|
2020-10-01 19:36:11 +00:00
|
|
|
if ( $comment instanceof CommentItem ) {
|
2021-09-08 18:31:24 +00:00
|
|
|
$authors[ $comment->getAuthor() ] = true;
|
2020-07-20 14:13:59 +00:00
|
|
|
}
|
|
|
|
// Get the set of authors in the same format from each reply
|
2021-09-08 18:31:24 +00:00
|
|
|
foreach ( $comment->getReplies() as $reply ) {
|
|
|
|
$getAuthorSet( $reply );
|
|
|
|
}
|
2020-07-20 14:13:59 +00:00
|
|
|
};
|
|
|
|
|
2021-09-08 18:31:24 +00:00
|
|
|
foreach ( $this->getReplies() as $reply ) {
|
|
|
|
$getAuthorSet( $reply );
|
|
|
|
}
|
2020-07-20 14:13:59 +00:00
|
|
|
|
|
|
|
ksort( $authors );
|
|
|
|
return array_keys( $authors );
|
|
|
|
}
|
|
|
|
|
2020-07-20 14:48:41 +00:00
|
|
|
/**
|
2021-11-18 22:30:26 +00:00
|
|
|
* Get the name of the page from which this thread item is transcluded (if any). Replies to
|
|
|
|
* transcluded items must be posted on that page, instead of the current one.
|
|
|
|
*
|
|
|
|
* This is tricky, because we don't want to mark items as trancluded when they're just using a
|
|
|
|
* template (e.g. {{ping|…}} or a non-substituted signature template). Sometimes the whole comment
|
|
|
|
* can be template-generated (e.g. when using some wrapper templates), but as long as a reply can
|
|
|
|
* be added outside of that template, we should not treat it as transcluded.
|
|
|
|
*
|
|
|
|
* The start/end boundary points of comment ranges and Parsoid transclusion ranges don't line up
|
|
|
|
* exactly, even when to a human it's obvious that they cover the same content, making this more
|
|
|
|
* complicated.
|
2020-07-20 14:48:41 +00:00
|
|
|
*
|
|
|
|
* @return string|bool `false` if this item is not transcluded. A string if it's transcluded
|
|
|
|
* from a single page (the page title, in text form with spaces). `true` if it's transcluded, but
|
|
|
|
* we can't determine the source.
|
|
|
|
*/
|
|
|
|
public function getTranscludedFrom() {
|
2021-11-18 22:30:26 +00:00
|
|
|
// General approach:
|
|
|
|
//
|
|
|
|
// Compare the comment range to each transclusion range on the page, and if it overlaps any of
|
|
|
|
// them, examine the overlap. There are a few cases:
|
|
|
|
//
|
|
|
|
// * Comment and transclusion do not overlap:
|
|
|
|
// → Not transcluded.
|
|
|
|
// * Comment contains the transclusion:
|
|
|
|
// → Not transcluded (just a template).
|
|
|
|
// * Comment is contained within the transclusion:
|
|
|
|
// → Transcluded, we can determine the source page (unless it's a complex transclusion).
|
|
|
|
// * Comment and transclusion overlap partially:
|
|
|
|
// → Transcluded, but we can't determine the source page.
|
|
|
|
// * Comment (almost) exactly matches the transclusion:
|
|
|
|
// → Maybe transcluded (it could be that the source page only contains that single comment),
|
|
|
|
// maybe not transcluded (it could be a wrapper template that covers a single comment).
|
|
|
|
// This is very sad, and we decide based on the namespace.
|
|
|
|
//
|
|
|
|
// Most transclusion ranges on the page trivially fall in the "do not overlap" or "contains"
|
|
|
|
// cases, and we only have to carefully examine the two transclusion ranges that contain the
|
|
|
|
// first and last node of the comment range.
|
|
|
|
//
|
|
|
|
// To check for almost exact matches, we walk between the relevant boundary points, and if we
|
|
|
|
// only find uninteresting nodes (that would be ignored when detecting comments), we treat them
|
|
|
|
// like exact matches.
|
|
|
|
|
|
|
|
$commentRange = $this->getRange();
|
|
|
|
$startTransclNode = CommentUtils::getTranscludedFromElement(
|
|
|
|
CommentUtils::getRangeFirstNode( $commentRange )
|
|
|
|
);
|
|
|
|
$endTransclNode = CommentUtils::getTranscludedFromElement(
|
|
|
|
CommentUtils::getRangeLastNode( $commentRange )
|
|
|
|
);
|
|
|
|
|
|
|
|
// We only have to examine the two transclusion ranges that contain the first/last node of the
|
|
|
|
// comment range (if they exist). Ignore ranges outside the comment or in the middle of it.
|
|
|
|
$transclNodes = [];
|
|
|
|
if ( $startTransclNode ) {
|
|
|
|
$transclNodes[] = $startTransclNode;
|
|
|
|
}
|
|
|
|
if ( $endTransclNode && $endTransclNode !== $startTransclNode ) {
|
|
|
|
$transclNodes[] = $endTransclNode;
|
2020-06-16 14:08:01 +00:00
|
|
|
}
|
2020-07-20 14:48:41 +00:00
|
|
|
|
2021-11-18 22:30:26 +00:00
|
|
|
foreach ( $transclNodes as $transclNode ) {
|
|
|
|
$transclRange = self::getTransclusionRange( $transclNode );
|
|
|
|
$compared = CommentUtils::compareRanges( $commentRange, $transclRange );
|
|
|
|
$transclTitle = $this->getSinglePageTransclusionTitle( $transclNode );
|
|
|
|
|
|
|
|
switch ( $compared ) {
|
|
|
|
case 'equal':
|
|
|
|
// Comment (almost) exactly matches the transclusion
|
|
|
|
if ( $transclTitle === null ) {
|
|
|
|
// Multi-template transclusion, or a parser function call, or template-affected wikitext outside
|
|
|
|
// of a template call, or a mix of the above
|
|
|
|
return true;
|
|
|
|
} elseif ( $transclTitle->inNamespace( NS_TEMPLATE ) ) {
|
|
|
|
// Is that a subpage transclusion with a single comment, or a wrapper template
|
|
|
|
// transclusion on this page? We don't know, but let's guess based on the namespace.
|
|
|
|
// (T289873)
|
|
|
|
// Continue examining the other ranges.
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
return $transclTitle->getPrefixedText();
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'contains':
|
|
|
|
// Comment contains the transclusion
|
|
|
|
|
|
|
|
// If the entire transclusion is contained within the comment range, that's just a
|
|
|
|
// template. This is the same as a transclusion in the middle of the comment, which we
|
|
|
|
// ignored earlier, it just takes us longer to get here in this case.
|
|
|
|
|
|
|
|
// Continue examining the other ranges.
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'contained':
|
|
|
|
// Comment is contained within the transclusion
|
|
|
|
if ( $transclTitle === null ) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return $transclTitle->getPrefixedText();
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'after':
|
|
|
|
case 'before':
|
|
|
|
// Comment and transclusion do not overlap
|
|
|
|
|
|
|
|
// This should be impossible, because we ignored these ranges earlier.
|
|
|
|
throw new LogicException( 'Unexpected transclusion or comment range' );
|
|
|
|
|
|
|
|
case 'overlapstart':
|
|
|
|
case 'overlapend':
|
|
|
|
// Comment and transclusion overlap partially
|
|
|
|
return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
throw new LogicException( 'Unexpected return value from compareRanges()' );
|
|
|
|
}
|
2020-07-20 14:48:41 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 22:30:26 +00:00
|
|
|
// If we got here, the comment range was not contained by or overlapping any of the transclusion
|
|
|
|
// ranges. Comment is not transcluded.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If the node represents a single-page transclusion, return that page's title.
|
|
|
|
* Otherwise return null.
|
|
|
|
*
|
|
|
|
* @param Element $node
|
|
|
|
* @return Title|null
|
|
|
|
*/
|
|
|
|
private function getSinglePageTransclusionTitle( Element $node ) {
|
2021-07-29 02:16:15 +00:00
|
|
|
$dataMw = json_decode( $node->getAttribute( 'data-mw' ) ?? '', true );
|
2020-07-20 14:48:41 +00:00
|
|
|
|
|
|
|
// Only return a page name if this is a simple single-template transclusion.
|
|
|
|
if (
|
|
|
|
is_array( $dataMw ) &&
|
|
|
|
$dataMw['parts'] &&
|
|
|
|
count( $dataMw['parts'] ) === 1 &&
|
|
|
|
$dataMw['parts'][0]['template'] &&
|
2020-08-07 15:41:41 +00:00
|
|
|
// 'href' will be unset if this is a parser function rather than a template
|
|
|
|
isset( $dataMw['parts'][0]['template']['target']['href'] )
|
2020-07-20 14:48:41 +00:00
|
|
|
) {
|
|
|
|
$title = CommentUtils::getTitleFromUrl( $dataMw['parts'][0]['template']['target']['href'] );
|
2021-11-18 22:30:26 +00:00
|
|
|
return $title;
|
2020-07-20 14:48:41 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 22:30:26 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a transclusion's first node (e.g. returned by CommentUtils::getTranscludedFromElement()),
|
|
|
|
* return a range starting before the node and ending after the transclusion's last node.
|
|
|
|
*
|
|
|
|
* @param Element $startNode
|
|
|
|
* @return ImmutableRange
|
|
|
|
*/
|
|
|
|
private function getTransclusionRange( Element $startNode ) {
|
|
|
|
$endNode = $startNode;
|
|
|
|
while (
|
|
|
|
// Phan doesn't realize that the conditions on $nextSibling can terminate the loop
|
|
|
|
// @phan-suppress-next-line PhanInfiniteLoop
|
|
|
|
$endNode &&
|
|
|
|
( $nextSibling = $endNode->nextSibling ) &&
|
|
|
|
$nextSibling instanceof Element &&
|
|
|
|
$nextSibling->getAttribute( 'about' ) === $endNode->getAttribute( 'about' )
|
|
|
|
) {
|
|
|
|
$endNode = $nextSibling;
|
|
|
|
}
|
|
|
|
|
|
|
|
$range = new ImmutableRange(
|
|
|
|
$startNode->parentNode,
|
|
|
|
CommentUtils::childIndexOf( $startNode ),
|
|
|
|
$endNode->parentNode,
|
|
|
|
CommentUtils::childIndexOf( $endNode ) + 1
|
|
|
|
);
|
|
|
|
|
|
|
|
return $range;
|
2020-07-20 14:48:41 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 18:25:34 +00:00
|
|
|
/**
|
|
|
|
* Get the HTML of this thread item
|
|
|
|
*
|
|
|
|
* @return string HTML
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getHTML(): string {
|
2020-07-22 18:25:34 +00:00
|
|
|
$fragment = $this->getRange()->cloneContents();
|
2020-11-20 00:21:30 +00:00
|
|
|
CommentModifier::unwrapFragment( $fragment );
|
2020-07-22 18:25:34 +00:00
|
|
|
$container = $fragment->ownerDocument->createElement( 'div' );
|
|
|
|
$container->appendChild( $fragment );
|
|
|
|
return DOMCompat::getInnerHTML( $container );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the text of this thread item
|
|
|
|
*
|
|
|
|
* @return string Text
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getText(): string {
|
2020-07-22 18:25:34 +00:00
|
|
|
$fragment = $this->getRange()->cloneContents();
|
2021-07-29 02:16:15 +00:00
|
|
|
return $fragment->textContent ?? '';
|
2020-07-22 18:25:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-22 16:26:05 +00:00
|
|
|
/**
|
|
|
|
* @return string Thread item type
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getType(): string {
|
2020-05-22 16:26:05 +00:00
|
|
|
return $this->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-10-01 19:36:11 +00:00
|
|
|
* @return int Indentation level
|
2020-05-22 16:26:05 +00:00
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getLevel(): int {
|
2020-05-22 16:26:05 +00:00
|
|
|
return $this->level;
|
|
|
|
}
|
|
|
|
|
2020-10-01 19:36:11 +00:00
|
|
|
/**
|
|
|
|
* @return ThreadItem|null Parent thread item
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getParent(): ?ThreadItem {
|
2020-10-01 19:36:11 +00:00
|
|
|
return $this->parent;
|
|
|
|
}
|
|
|
|
|
2020-05-22 16:26:05 +00:00
|
|
|
/**
|
2020-07-22 18:25:34 +00:00
|
|
|
* @return ImmutableRange Range of the entire thread item
|
2020-05-22 16:26:05 +00:00
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getRange(): ImmutableRange {
|
2020-05-22 16:26:05 +00:00
|
|
|
return $this->range;
|
|
|
|
}
|
|
|
|
|
2020-07-29 23:57:51 +00:00
|
|
|
/**
|
2021-07-29 02:16:15 +00:00
|
|
|
* @return Node Root node (level is relative to this node)
|
2020-07-29 23:57:51 +00:00
|
|
|
*/
|
2021-07-29 02:16:15 +00:00
|
|
|
public function getRootNode(): Node {
|
2020-07-29 23:57:51 +00:00
|
|
|
return $this->rootNode;
|
|
|
|
}
|
|
|
|
|
2021-02-12 19:16:13 +00:00
|
|
|
/**
|
|
|
|
* @return string Thread item name
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getName(): string {
|
2021-02-12 19:16:13 +00:00
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
2020-05-22 16:26:05 +00:00
|
|
|
/**
|
2020-09-22 23:05:25 +00:00
|
|
|
* @return string Thread ID
|
2020-05-22 16:26:05 +00:00
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getId(): string {
|
2020-05-22 16:26:05 +00:00
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
2020-10-21 15:52:04 +00:00
|
|
|
/**
|
|
|
|
* @return string|null Thread ID, according to an older algorithm
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getLegacyId(): ?string {
|
2020-10-21 15:52:04 +00:00
|
|
|
return $this->legacyId;
|
|
|
|
}
|
|
|
|
|
2020-05-22 16:26:05 +00:00
|
|
|
/**
|
2020-10-01 19:36:11 +00:00
|
|
|
* @return ThreadItem[] Replies to this thread item
|
2020-05-22 16:26:05 +00:00
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getReplies(): array {
|
2020-05-22 16:26:05 +00:00
|
|
|
return $this->replies;
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:35:38 +00:00
|
|
|
/**
|
|
|
|
* @return string[] Warnings
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function getWarnings(): array {
|
2020-11-02 18:35:38 +00:00
|
|
|
return $this->warnings;
|
|
|
|
}
|
|
|
|
|
2020-05-22 16:26:05 +00:00
|
|
|
/**
|
2020-10-01 19:36:11 +00:00
|
|
|
* @param int $level Indentation level
|
2020-05-22 16:26:05 +00:00
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function setLevel( int $level ): void {
|
2020-05-22 16:26:05 +00:00
|
|
|
$this->level = $level;
|
|
|
|
}
|
|
|
|
|
2020-10-01 19:36:11 +00:00
|
|
|
/**
|
2020-11-11 08:31:59 +00:00
|
|
|
* @param ThreadItem $parent
|
2020-10-01 19:36:11 +00:00
|
|
|
*/
|
2021-12-01 14:53:20 +00:00
|
|
|
public function setParent( ThreadItem $parent ): void {
|
2020-10-01 19:36:11 +00:00
|
|
|
$this->parent = $parent;
|
|
|
|
}
|
|
|
|
|
2020-05-22 16:26:05 +00:00
|
|
|
/**
|
|
|
|
* @param ImmutableRange $range Thread item range
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function setRange( ImmutableRange $range ): void {
|
2020-05-22 16:26:05 +00:00
|
|
|
$this->range = $range;
|
|
|
|
}
|
|
|
|
|
2020-07-29 23:57:51 +00:00
|
|
|
/**
|
2021-07-29 02:16:15 +00:00
|
|
|
* @param Node $rootNode Root node (level is relative to this node)
|
2020-07-29 23:57:51 +00:00
|
|
|
*/
|
2021-07-29 02:16:15 +00:00
|
|
|
public function setRootNode( Node $rootNode ): void {
|
2020-07-29 23:57:51 +00:00
|
|
|
$this->rootNode = $rootNode;
|
|
|
|
}
|
|
|
|
|
2021-02-12 19:16:13 +00:00
|
|
|
/**
|
|
|
|
* @param string|null $name Thread item name
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function setName( ?string $name ): void {
|
2021-02-12 19:16:13 +00:00
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
|
2020-05-22 16:26:05 +00:00
|
|
|
/**
|
|
|
|
* @param string|null $id Thread ID
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function setId( ?string $id ): void {
|
2020-05-22 16:26:05 +00:00
|
|
|
$this->id = $id;
|
|
|
|
}
|
|
|
|
|
2020-10-21 15:52:04 +00:00
|
|
|
/**
|
|
|
|
* @param string|null $id Thread ID
|
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function setLegacyId( ?string $id ): void {
|
2020-10-21 15:52:04 +00:00
|
|
|
$this->legacyId = $id;
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:35:38 +00:00
|
|
|
/**
|
2020-11-11 08:31:59 +00:00
|
|
|
* @param string $warning
|
2020-11-02 18:35:38 +00:00
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function addWarning( string $warning ): void {
|
2020-11-02 18:35:38 +00:00
|
|
|
$this->warnings[] = $warning;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-11-11 08:31:59 +00:00
|
|
|
* @param string[] $warnings
|
2020-11-02 18:35:38 +00:00
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function addWarnings( array $warnings ): void {
|
2020-11-02 18:35:38 +00:00
|
|
|
$this->warnings = array_merge( $this->warnings, $warnings );
|
|
|
|
}
|
|
|
|
|
2020-05-22 16:26:05 +00:00
|
|
|
/**
|
2020-10-01 19:36:11 +00:00
|
|
|
* @param ThreadItem $reply Reply comment
|
2020-05-22 16:26:05 +00:00
|
|
|
*/
|
2021-07-22 07:25:13 +00:00
|
|
|
public function addReply( ThreadItem $reply ): void {
|
2020-05-22 16:26:05 +00:00
|
|
|
$this->replies[] = $reply;
|
|
|
|
}
|
|
|
|
}
|