Automattic\WooCommerce\Vendor\GraphQL\Language
Token::toArray
Method of the class: Token{}
No Hooks.
Returns
Array{ . kind: string, value: string|null, line: int, column: int, }
Usage
$Token = new Token(); $Token->toArray(): array;
Token::toArray() Token::toArray code WC 10.8.1
public function toArray(): array
{
return [
'kind' => $this->kind,
'value' => $this->value,
'line' => $this->line,
'column' => $this->column,
];
}