blob: 396673f4f6352c6c8d601c621377864a6817126a [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001<?php
2
3declare(strict_types=1);
4
5namespace Ddeboer\Imap\Search\State;
6
7use Ddeboer\Imap\Search\ConditionInterface;
8
9/**
10 * Represents an OLD condition. Only old messages will match this condition.
11 */
12final class Old implements ConditionInterface
13{
14 /**
15 * Returns the keyword that the condition represents.
16 */
17 public function toString(): string
18 {
19 return 'OLD';
20 }
21}