mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-23 21:53:35 +00:00
63de22357d
Implicitly marking parameter $... as nullable is deprecated in PHP 8.4. The explicit nullable type must be used instead. Bug: T376276 Change-Id: I303342cf1a002d5f0afc77ce147ce9453ea5282e
30 lines
626 B
PHP
30 lines
626 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\AbuseFilter\Parser;
|
|
|
|
/**
|
|
* A class representing a whole AST generated by AFPTreeParser, holding AFPTreeNode's. This wrapper
|
|
* could be expanded in the future. For now, it's mostly useful for typehints, and to have an
|
|
* evalTree function in the evaluator.
|
|
*/
|
|
class AFPSyntaxTree {
|
|
/**
|
|
* @var AFPTreeNode|null
|
|
*/
|
|
private $rootNode;
|
|
|
|
/**
|
|
* @param AFPTreeNode|null $root
|
|
*/
|
|
public function __construct( ?AFPTreeNode $root = null ) {
|
|
$this->rootNode = $root;
|
|
}
|
|
|
|
/**
|
|
* @return AFPTreeNode|null
|
|
*/
|
|
public function getRoot(): ?AFPTreeNode {
|
|
return $this->rootNode;
|
|
}
|
|
}
|