mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 09:08:09 +08:00
21 lines
306 B
PHP
21 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
|
|
{
|
|
|
|
}
|