mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
18 lines
537 B
PHP
18 lines
537 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Collection;
|
|
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
|
|
/**
|
|
* A map that can create a writable container.
|
|
*/
|
|
interface WritableContainerFactoryInterface extends \WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\ContainerFactoryInterface
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*
|
|
* @return WritableContainerInterface The new container.
|
|
*/
|
|
public function createContainerFromArray(array $data): ContainerInterface;
|
|
}
|