pQuery\TextNode::text PHP Метод

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

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