mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
14 lines
301 B
PHP
14 lines
301 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Collection;
|
|
|
|
use Traversable;
|
|
/**
|
|
* A list that can be checked for a key.
|
|
*
|
|
* @since 0.2
|
|
*/
|
|
interface SetInterface extends Traversable, \WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\HasItemCapableInterface
|
|
{
|
|
}
|