Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| MMLmspace | |
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 | /** |
| 6 | * Presentation MathML 3 Element |
| 7 | * name: "mspace" |
| 8 | * description: "space" |
| 9 | * category: "Token Elements" |
| 10 | */ |
| 11 | class MMLmspace extends MMLleaf { |
| 12 | public function __construct( string $texclass = "", array $attributes = [] ) { |
| 13 | parent::__construct( "mspace", $texclass, $attributes ); |
| 14 | } |
| 15 | } |