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

HashNode::__constructpublicWC 1.0

Method of the class: HashNode{}

No Hooks.

Returns

null. Nothing (null).

Usage

$HashNode = new HashNode();
$HashNode->__construct( $selector, $id );
$selector(NodeInterface) (required)
.
$id(string) (required)
.

HashNode::__construct() code WC 10.8.1

public function __construct(NodeInterface $selector, string $id)
{
    $this->selector = $selector;
    $this->id = $id;
}