mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-27 01:22:18 +08:00
15 lines
357 B
PHP
15 lines
357 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 \WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\CountableListInterface, \WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\MapInterface
|
|
{
|
|
}
|