mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
22 lines
306 B
PHP
22 lines
306 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Collection;
|
||
|
|
||
|
/**
|
||
|
* A countable map.
|
||
|
*
|
||
|
* @since 0.2
|
||
|
*
|
||
|
* @psalm-suppress UnusedClass
|
||
|
*/
|
||
|
interface CountableMapInterface extends
|
||
|
/* @since 0.2 */
|
||
|
CountableListInterface,
|
||
|
/* @since 0.2 */
|
||
|
MapInterface
|
||
|
{
|
||
|
|
||
|
}
|