blob: a9d7988cee65d4f5343359a9531566338d3d26a1 [file] [log] [blame]
<?php
declare(strict_types=1);
namespace Ddeboer\Imap;
interface MessageIteratorInterface extends \Iterator
{
/**
* Get current message.
*/
public function current(): MessageInterface;
}