pQuery\TextNode::html PHP Méthode

html() public méthode

public html ( $value = null )
    public function html($value = null)
    {
        if ($value !== null) {
            $this->text = $value;
            return $this;
        }
        return $this->text;
    }