Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Node

AbstractNode::getNodeNamepublicWC 1.0

Method of the class: AbstractNode{}

No Hooks.

Returns

null. Nothing (null).

Usage

$AbstractNode = new AbstractNode();
$AbstractNode->getNodeName(): string;

AbstractNode::getNodeName() code WC 10.5.0

public function getNodeName(): string
{
    if (null === $this->nodeName) {
        $this->nodeName = preg_replace('~.*\\\\([^\\\\]+)Node$~', '$1', static::class);
    }

    return $this->nodeName;
}