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    public function __construct( string $texclass = "", array $attributes = [], MMLbase ...$children ) {
8        $attributes["xmlns"] = "http://www.w3.org/1998/Math/MathML";
9        parent::__construct( "math", $texclass, $attributes, ...$children );
10    }
11}