Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
woocommerce-paypal-payments
/
lib
/
packages
/
Dhii
/
Container
:
DataStructureBasedFactoryInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Container; use WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\WritableMapFactoryInterface; use WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\WritableMapInterface; use Exception; use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface as BaseContainerInterface; /** * Creates a container hierarchy based on a traditional data structure. */ interface DataStructureBasedFactoryInterface extends WritableMapFactoryInterface { /** * Based on a traditional data structure, creates a container hierarchy. * * @param mixed[] $structure The traditional data structure representation. * * @return WritableMapInterface A hierarchy of writable maps that reflects the data structure. * * @throws Exception If problem creating. */ public function createContainerFromArray(array $structure): BaseContainerInterface; }