Automattic\WooCommerce\Vendor\GraphQL\Type\Definition
Type::isCompositeType
Determines if the given type is a composite type.
Method of the class: Type{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = Type::isCompositeType( $type ): bool;
- $type(mixed) (required)
- .
Type::isCompositeType() Type::isCompositeType code WC 10.9.4
public static function isCompositeType($type): bool
{
return $type instanceof CompositeType;
}