mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 14:57:26 +08:00
21 lines
284 B
PHP
21 lines
284 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Collection;
|
|
|
|
use Traversable;
|
|
|
|
/**
|
|
* A traversable container.
|
|
*
|
|
* @since 0.2
|
|
*/
|
|
interface MapInterface extends
|
|
/* @since 0.2 */
|
|
Traversable,
|
|
/* @since 0.2 */
|
|
ContainerInterface
|
|
{
|
|
|
|
}
|