mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
20 lines
607 B
PHP
20 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;
|
||
|
}
|