mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-28 03:09:16 +08:00
15 lines
251 B
PHP
15 lines
251 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Collection;
|
|
|
|
use Traversable;
|
|
use Countable;
|
|
/**
|
|
* A list that can be counted.
|
|
*
|
|
* @since 0.2
|
|
*/
|
|
interface CountableListInterface extends Traversable, Countable
|
|
{
|
|
}
|