Modern DOM library written in PHP for HTML documents
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

560 B

The Walk trait

Introduction

Allows the extended PHP DOM classes to walk down the DOM via a \Generator. This is in lieu of recreating the awful DOM TreeWalker API.

trait MensBeam\HTML\Walk {

    public walk ( \Closure $filter ) : \Generator

}