Habari\HTMLNodes::__call PHP Метод

__call() публичный Метод

Make calls against this list to execute that method on all of the items within it
public __call ( string $method, array $args ) : HTMLNodes
$method string The method called on this list
$args array Arguments to this call
Результат HTMLNodes $this
    public function __call($method, $args)
    {
        foreach ($this as $htmlnode) {
            call_user_func_array(array($htmlnode, $method), $args);
        }
        return $this;
    }