| Current Path : /var/www/magento.test.indacotrentino.com/www/vendor/phpgt/dom/src/ |
| Current File : /var/www/magento.test.indacotrentino.com/www/vendor/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);
}
}