WooCommerce Code Reference

ImplementingType.php

Source code

<?php declare(strict_types=1);

namespace Automattic\WooCommerce\Vendor\GraphQL\Type\Definition;

/**
 * export type GraphQLImplementingType =
 * GraphQLObjectType |
 * GraphQLInterfaceType;.
 */
interface ImplementingType
{
    public function implementsInterface(InterfaceType $interfaceType): bool;

    /** @return array<int, InterfaceType> */
    public function getInterfaces(): array;
}