Automattic\WooCommerce\Vendor\GraphQL\Type
Introspection::isIntrospectionType
Метод класса: Introspection{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$result = Introspection::isIntrospectionType( $type ): bool;
- $type(Type&NamedType) (обязательный)
- .
Код Introspection::isIntrospectionType() Introspection::isIntrospectionType WC 10.9.1
public static function isIntrospectionType(NamedType $type): bool
{
return in_array($type->name, self::TYPE_NAMES, true);
}