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
MMLmenclose
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: "menclose"
8 * description: "The menclose element renders its content inside the enclosing notation specified
9 * by its notation attribute."
10 * category:  General Layout Schemata
11 * @deprecated is not part of MathML core specification: T389712
12 */
13class MMLmenclose extends MMLbase {
14
15    public function __construct( string $texclass = "", array $attributes = [], MMLbase ...$children ) {
16        parent::__construct( "menclose", $texclass, $attributes, $children );
17    }
18}