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/NodeIteratorFactory.php

<?php
namespace Gt\Dom;

class NodeIteratorFactory extends NodeIterator {
	public static function create(
		Node|Element $root,
		int $whatToShow = NodeFilter::SHOW_ALL,
		NodeFilter|callable $filter = null
	):NodeIterator {
		$class = NodeIterator::class;
		return new $class($root, $whatToShow, $filter);
	}
}