Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Parser
Token::__construct
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() 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;
}