mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 09:08:09 +08:00
21 lines
302 B
PHP
21 lines
302 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
|
|
/* @since 0.2 */
|
|
Traversable,
|
|
/* @since 0.2 */
|
|
HasItemCapableInterface
|
|
{
|
|
|
|
}
|