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

NodeInterface{}interfaceWC 1.0

Interface for nodes.

This component is a port of the Python cssselect library, which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.

No Hooks.

Usage

$NodeInterface = new NodeInterface();
// use class methods

Methods

  1. public __toString()
  2. public getNodeName()
  3. public getSpecificity()

NodeInterface{} code WC 10.4.3

interface NodeInterface
{
    public function getNodeName(): string;

    public function getSpecificity(): Specificity;

    public function __toString(): string;
}