blob: d6d2d36ac2ca9c95c3156c5080b9313bd2f1ec06 [file] [log] [blame]
<?php
declare(strict_types=1);
namespace Ddeboer\Imap\Search\State;
use Ddeboer\Imap\Search\ConditionInterface;
/**
* Represents a UNDELETED condition. Messages must not have been marked for
* deletion in order to match the condition.
*/
final class Undeleted implements ConditionInterface
{
/**
* Returns the keyword that the condition represents.
*/
public function toString(): string
{
return 'UNDELETED';
}
}