Page MenuHomeWickedGov Phorge

XMLNode.php
No OneTemporary

Size
377 B
Referenced Files
None
Subscribers
None

XMLNode.php

<?php
namespace MediaWiki\Extension\Math\WikiTexVC;
/**
* This is a helper class for MMLComparator currently
* to load MathML Strings to PHP objects.
*/
class XMLNode {
/** @var mixed */
public $value;
/** @var self[] */
public $children;
/**
* @param mixed $value
*/
public function __construct( $value ) {
$this->value = $value;
$this->children = [];
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Aug 19, 02:11 (2 w, 2 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
71/82/868815596f6311ee11d617af5625
Default Alt Text
XMLNode.php (377 B)

Event Timeline