mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-27 01:22:18 +08:00
19 lines
501 B
PHP
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;
|
|
}
|