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