Your IP : 216.73.216.81


Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/phpgt/dom/src/
Upload File :
Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/phpgt/dom/src/XPathResultFactory.php

<?php
namespace Gt\Dom;

class XPathResultFactory extends XPathResult {
	public static function create(
		string $query,
		Document $document,
		Node|Element $context,
	):XPathResult {
		return new XPathResult($query, $document, $context);
	}
}