blob: 03c16f7e28a4a33f9ee9597f6f240fc6382ca5b5 [file] [log] [blame]
<?php
declare(strict_types=1);
namespace Ddeboer\Imap;
interface ImapResourceInterface
{
/**
* Get IMAP resource stream.
*
* @return resource
*/
public function getStream();
/**
* Clear last mailbox used cache.
*/
public function clearLastMailboxUsedCache(): void;
}