mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-15 11:48:23 +00:00
Merge "Update namespace references in MMLNodes"
This commit is contained in:
commit
5db9b573f3
|
@ -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