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 */
12class MMLmenclose extends MMLbase {
13
14    public function __construct( string $texclass = "", array $attributes = [] ) {
15        parent::__construct( "menclose", $texclass, $attributes );
16    }
17}