Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
MMLmtr | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | |
3 | namespace MediaWiki\Extension\Math\WikiTexVC\MMLnodes; |
4 | |
5 | /** |
6 | * Presentation MathML 3 Element |
7 | * name: "mtr" |
8 | * description: "row in a table or matrix" |
9 | * category: "Tables and Matrices" |
10 | */ |
11 | class MMLmtr extends MMLbase { |
12 | |
13 | public function __construct( string $texclass = "", array $attributes = [] ) { |
14 | parent::__construct( "mtr", $texclass, $attributes ); |
15 | } |
16 | |
17 | } |