Update namespace references in MMLNodes

* this is necessary for phan to have corresponding namespaces to project structure

Bug: T302628

Change-Id: Ic485136990698828c04739db48f69658264bfd25
This commit is contained in:
Stegmujo 2022-12-23 10:44:57 +00:00 committed by Physikerwelt
parent d3da9f2ce1
commit bdcd599e97

View file

@ -4,19 +4,10 @@ namespace MediaWiki\Extension\Math\TexVC\MMLnodes;
use MediaWiki\Extension\Math\TexVC\MMLmappings\TexConstants\Tag;
/**
* This is the basic mathml element and contains the
* functions to construct MathML tags.
* @author Johannes Stegmüller
*/
class MMLbase {
/** @var string */
private $name;
/** @var string */
private $texclass;
/** @var array */
private $attributes;
private string $name;
private string $texclass;
private array $attributes;
public function __construct( string $name, string $texclass = "", array $attributes = [] ) {
$this->name = $name;