Automattic\WooCommerce\Vendor\GraphQL\Type\Definition
WrappingType{}
Хуков нет.
Использование
$WrappingType = new WrappingType(); // use class methods
Методы
- public getInnermostType()
- public getWrappedType()
Код WrappingType{} WrappingType{} WC 10.9.1
interface WrappingType
{
/** Return the wrapped type, which may itself be a wrapping type. */
public function getWrappedType(): Type;
/**
* Return the innermost wrapped type, which is guaranteed to be a named type.
*
* @return Type&NamedType
*/
public function getInnermostType(): NamedType;
}