Your IP : 216.73.216.81


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

<?php
namespace Gt\Dom;

class HTMLCollectionFactory extends HTMLCollection {
	public static function create(callable $callback):HTMLCollection {
		return new HTMLCollection($callback);
	}

	public static function createHTMLOptionsCollection(
		callable $callback
	):HTMLOptionsCollection {
		return new HTMLOptionsCollection($callback);
	}

	public static function createHTMLFormControlsCollection(
		callable $callback
	):HTMLFormControlsCollection {
		return new HTMLFormControlsCollection($callback);
	}
}