| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/phpgt/dom/src/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/phpgt/dom/src/TreeWalkerFactory.php |
<?php
namespace Gt\Dom;
class TreeWalkerFactory extends TreeWalker {
public static function create(
Node|Element $root,
int $whatToShow = NodeFilter::SHOW_ALL,
NodeFilter|callable $filter = null
):TreeWalker {
$class = TreeWalker::class;
return new $class($root, $whatToShow, $filter);
}
}