mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
22 lines
302 B
PHP
22 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
|
||
|
{
|
||
|
}
|