Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
MMLmath
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3namespace MediaWiki\Extension\Math\WikiTexVC\MMLnodes;
4
5class MMLmath extends MMLbase {
6
7    /** @inheritDoc */
8    public function __construct( string $texclass = "", array $attributes = [], ...$children ) {
9        $attributes["xmlns"] = "http://www.w3.org/1998/Math/MathML";
10        parent::__construct( "math", $texclass, $attributes, ...$children );
11    }
12}