Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| MMLmrow | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 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 | /** @inheritDoc */ |
| 16 | public function __construct( string $texclass = TexClass::ORD, array $attributes = [], ...$children ) { |
| 17 | parent::__construct( "mrow", $texclass, $attributes, ...$children ); |
| 18 | } |
| 19 | } |