File "ClearableContainerInterface.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/woocommerce-paypal-payments/lib/packages/Dhii/Collection/ClearableContainerInterface.php
File size: 607 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}