woocommerce-paypal-payments/lib/packages/Dhii/Collection/WritableContainerFactoryInterface.php
2026-03-04 09:37:06 +00:00

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;
}