Symfony\Component\CssSelector\Node
ElementNode::__toString() public WC 1.0
{@inheritdoc}
{} Это метод класса: ElementNode{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$ElementNode = new ElementNode(); $ElementNode->__toString();
Код ElementNode::__toString() ElementNode:: toString WC 5.0.0
public function __toString()
{
$element = $this->element ?: '*';
return sprintf('%s[%s]', $this->getNodeName(), $this->namespace ? $this->namespace.'|'.$element : $element);
}