mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-07 19:54:15 +08:00
16 lines
373 B
PHP
16 lines
373 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Collection;
|
|
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface as BaseContainerInterface;
|
|
|
|
/**
|
|
* Something that can retrieve and determine the existence of a value by key.
|
|
*/
|
|
interface ContainerInterface extends
|
|
HasCapableInterface,
|
|
BaseContainerInterface
|
|
{
|
|
}
|