blob: ba0ba736bcd38844280d3103dc2089c342c214f1 [file] [log] [blame]
<?php
declare(strict_types=1);
namespace Ddeboer\Imap\Search\Flag;
use Ddeboer\Imap\Search\ConditionInterface;
/**
* Represents an RECENT flag condition. Messages must have the \\RECENT flag
* set in order to match the condition.
*/
final class Recent implements ConditionInterface
{
/**
* Returns the keyword that the condition represents.
*/
public function toString(): string
{
return 'RECENT';
}
}