mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 11:48:23 +00:00
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:
parent
d3da9f2ce1
commit
bdcd599e97
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue