mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 04:58:28 +08:00
21 lines
302 B
PHP
21 lines
302 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
|
|
/* @since 0.2 */
|
|
Traversable,
|
|
/* @since 0.2 */
|
|
Countable
|
|
{
|
|
}
|