mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 04:58:28 +08:00
19 lines
607 B
PHP
19 lines
607 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Dhii\Collection;
|
|
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerExceptionInterface;
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface as PsrContainerInterface;
|
|
|
|
interface ClearableContainerInterface extends PsrContainerInterface
|
|
{
|
|
/**
|
|
* Removes all members from this container.
|
|
*
|
|
* @psalm-suppress InvalidThrow In PSR-11, this interface does not extend `Throwable`.
|
|
* @throws ContainerExceptionInterface If problem removing.
|
|
*/
|
|
public function clear(): void;
|
|
}
|