Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
MMLmsqrt
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3namespace MediaWiki\Extension\Math\WikiTexVC\MMLnodes;
4
5/**
6 * Presentation MathML 3 Element
7 * name: "msqrt"
8 * description: "form a square root (radical without an index)"
9 * category: "General Layout Schemata"
10 */
11class MMLmsqrt extends MMLbase {
12
13    public function __construct( string $texclass = "", array $attributes = [], MMLbase ...$base ) {
14        parent::__construct( "msqrt", $texclass, $attributes, ...$base );
15    }
16}