mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
Add isolated container and dhii modularity deps
This commit is contained in:
parent
c31637fc44
commit
818dbcf107
123 changed files with 3227 additions and 188 deletions
21
lib/packages/Dhii/Collection/CountableListInterface.php
Normal file
21
lib/packages/Dhii/Collection/CountableListInterface.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?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
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue