Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Node
ElementNode::__construct
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() ElementNode:: construct code WC 10.5.0
public function __construct(?string $namespace = null, ?string $element = null)
{
$this->namespace = $namespace;
$this->element = $element;
}