mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
13 lines
365 B
PHP
13 lines
365 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Collection;
|
|
|
|
/**
|
|
* A map that can have a value set for a key.
|
|
*
|
|
* @since [*next-version*]
|
|
*/
|
|
interface WritableMapInterface extends \WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\MapInterface, \WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\WritableContainerInterface
|
|
{
|
|
}
|