mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-08 21:52:55 +08:00
21 lines
487 B
PHP
21 lines
487 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 ContainerFactoryInterface
|
||
|
{
|
||
|
/**
|
||
|
* @inheritDoc
|
||
|
*
|
||
|
* @return WritableContainerInterface The new container.
|
||
|
*/
|
||
|
public function createContainerFromArray(array $data): ContainerInterface;
|
||
|
}
|