FluentDOM\Node\StringCast::__toString PHP Method

__toString() public method

Casting the element node to string will returns its node value
public __toString ( ) : string
return string
    public function __toString()
    {
        /** @var \DOMNode $this */
        return $this instanceof \DOMNode ? (string) $this->nodeValue : '';
    }
StringCast