mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
12 lines
415 B
PHP
12 lines
415 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 \WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\HasCapableInterface, BaseContainerInterface
|
|
{
|
|
}
|