Automattic\WooCommerce\Vendor\GraphQL\Language

Token::getDescriptionpublicWC 1.0

Method of the class: Token{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Token = new Token();
$Token->getDescription(): string;

Token::getDescription() code WC 10.8.1

public function getDescription(): string
{
    return $this->kind
        . ($this->value === null
            ? ''
            : " \"{$this->value}\"");
}