Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Parser

Token::__constructpublicWC 1.0

Method of the class: Token{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Token = new Token();
$Token->__construct( ?string $type, ?string $value, ?int $position );
?string $type(required)
.
?string $value(required)
.
?int $position(required)
.

Token::__construct() code WC 10.5.0

public function __construct(?string $type, ?string $value, ?int $position)
{
    $this->type = $type;
    $this->value = $value;
    $this->position = $position;
}