blob: 03c16f7e28a4a33f9ee9597f6f240fc6382ca5b5 [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001<?php
2
3declare(strict_types=1);
4
5namespace Ddeboer\Imap;
6
7interface ImapResourceInterface
8{
9 /**
10 * Get IMAP resource stream.
11 *
12 * @return resource
13 */
14 public function getStream();
15
16 /**
17 * Clear last mailbox used cache.
18 */
19 public function clearLastMailboxUsedCache(): void;
20}