Files
provider_imap/lib/Client/IdentifierMode.php
2026-05-08 00:16:43 -04:00

16 lines
239 B
PHP

<?php
declare(strict_types=1);
namespace KTXM\ProviderImap\Client;
enum IdentifierMode
{
case Sequence;
case Uid;
public function toCommand(): string
{
return $this === self::Uid ? 'UID FETCH' : 'FETCH';
}
}