Automattic\WooCommerce\Vendor\GraphQL\Language
Token::getDescription
Method of the class: Token{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Token = new Token(); $Token->getDescription(): string;
Token::getDescription() Token::getDescription code WC 10.8.1
public function getDescription(): string
{
return $this->kind
. ($this->value === null
? ''
: " \"{$this->value}\"");
}