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

<?php
namespace Gt\Dom;

class NodeListFactory extends NodeList {
	public static function create(Node|Element|Attr|Text...$nodeList):NodeList {
		return new NodeList(...$nodeList);
	}

	public static function createLive(callable $callback):NodeList {
		return new NodeList($callback);
	}

	public static function createRadioNodeList(callable $callback):RadioNodeList {
		return new RadioNodeList($callback);
	}
}