File "WritableContainerFactoryInterface.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Dhii/Collection/WritableContainerFactoryInterface.php
File size: 487 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}