public function SelectorNode::__toString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/css-selector/Node/SelectorNode.php \Symfony\Component\CssSelector\Node\SelectorNode::__toString()
Returns node's string representation.
Return value
string
Overrides NodeInterface::__toString
File
- vendor/
symfony/ css-selector/ Node/ SelectorNode.php, line 71
Class
- SelectorNode
- Represents a "<selector>(::|:)<pseudoElement>" node.
Namespace
Symfony\Component\CssSelector\NodeCode
public function __toString() {
return sprintf('%s[%s%s]', $this
->getNodeName(), $this->tree, $this->pseudoElement ? '::' . $this->pseudoElement : '');
}