Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
MMLmphantom | |
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: "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 | */ |
13 | class MMLmphantom extends MMLbase { |
14 | |
15 | public function __construct( string $texclass = "", array $attributes = [], MMLbase ...$children ) { |
16 | parent::__construct( "mphantom", $texclass, $attributes, ...$children ); |
17 | } |
18 | } |