woocommerce-paypal-payments/lib/packages/Dhii/Collection/CountableListInterface.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
{
}