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