Automattic\WooCommerce\Vendor\Symfony\Component\CssSelector\Parser
Token::__toString
Method of the class: Token{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Token = new Token(); $Token->__toString(): string;
Token::__toString() Token:: toString code WC 10.5.0
public function __toString(): string
{
if ($this->value) {
return sprintf('<%s "%s" at %s>', $this->type, $this->value, $this->position);
}
return sprintf('<%s at %s>', $this->type, $this->position);
}