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

19 lines
501 B
PHP

<?php
declare (strict_types=1);
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Collection;
/**
* Creates writable sets.
*
* @psalm-suppress UnusedClass
*/
interface WritableSetFactoryInterface extends \WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\SetFactoryInterface
{
/**
* @inheritDoc
*
* @return WritableSetInterface The new writable set.
*/
public function createSetFromList(array $list): \WooCommerce\PayPalCommerce\Vendor\Dhii\Collection\SetInterface;
}