Automattic\WooCommerce\Vendor\GraphQL\Type\Definition

ListOfType::toStringpublicWC 1.0

Method of the class: ListOfType{}

No Hooks.

Returns

null. Nothing (null).

Usage

$ListOfType = new ListOfType();
$ListOfType->toString(): string;

ListOfType::toString() code WC 10.9.1

public function toString(): string
{
    return '[' . $this->getWrappedType()->toString() . ']';
}