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

ElementNode::__constructpublicWC 1.0

Method of the class: ElementNode{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ElementNode = new ElementNode();
$ElementNode->__construct( ?string $namespace, ?string $element );
?string $namespace
.
Default: null
?string $element
.
Default: null

ElementNode::__construct() code WC 10.5.0

public function __construct(?string $namespace = null, ?string $element = null)
{
    $this->namespace = $namespace;
    $this->element = $element;
}