Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
MMLmrow | |
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 | use MediaWiki\Extension\Math\WikiTexVC\MMLmappings\TexConstants\TexClass; |
6 | |
7 | /** |
8 | * Presentation MathML 3 Element |
9 | * name: "mrow" |
10 | * description: "group any number of sub-expressions horizontally" |
11 | * category: "General Layout Schemata" |
12 | */ |
13 | class MMLmrow extends MMLbase { |
14 | |
15 | public function __construct( string $texclass = TexClass::ORD, array $attributes = [] ) { |
16 | parent::__construct( "mrow", $texclass, $attributes ); |
17 | } |
18 | } |