Automattic\WooCommerce\Vendor\GraphQL\Type\Definition

Type::isAbstractTypepublic staticWC 1.0

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() code WC 11.1.2

public static function isAbstractType($type): bool
{
    return $type instanceof AbstractType;
}