Page MenuHomeWickedGov Phorge

MMLleaf.php
No OneTemporary

Size
440 B
Referenced Files
None
Subscribers
None

MMLleaf.php

<?php
namespace MediaWiki\Extension\Math\WikiTexVC\MMLnodes;
abstract class MMLleaf extends MMLbase {
protected string $text;
public function __construct(
string $name,
string $texclass = '',
array $attributes = [],
string $text = ''
) {
parent::__construct( $name, $texclass, $attributes );
$this->text = $text;
}
/**
* Get text
* @return string
*/
public function getText(): string {
return $this->text;
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 19:51 (2 w, 3 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
6b/a8/312a8ccfc23dab24cddd4bc76027
Default Alt Text
MMLleaf.php (440 B)

Event Timeline