Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/vendor/phpgt/dom/src/
Upload File :
Current File : /var/www/clients/client3/web2/web/vendor/phpgt/dom/src/XMLDocument.php

<?php
namespace Gt\Dom;

use DOMDocument;

/**
 * Provides access to special properties and methods not present by default
 * on a regular document.
 */
class XMLDocument extends Document {
	use LiveProperty, ParentNode;

	public function __construct($document) {
		parent::__construct($document);

		if(!$document instanceof DOMDocument) {
			$this->loadXML($document);
		}
	}
}