Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
MMLmphantom
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace MediaWiki\Extension\Math\WikiTexVC\MMLnodes;
4
5/**
6 * Presentation MathML 3 Element
7 * name: "mphantom"
8 * description:  "The mphantom element renders invisibly,
9 * but with the same size and other dimensions, including baseline position,
10 * that its contents would have if they were rendered normally"
11 * category: General Layout Schemata
12 */
13class MMLmphantom extends MMLbase {
14
15    public function __construct( string $texclass = "", array $attributes = [] ) {
16        parent::__construct( "mphantom", $texclass, $attributes );
17    }
18}