blob: 561f3f25bcc0faf34e48ababc40bc94c4ab800b8 [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001<?php
2
3declare(strict_types=1);
4
5namespace Ddeboer\Imap\Search\Date;
6
7use Ddeboer\Imap\Search\AbstractDate;
8
9/**
10 * Represents a date before condition. Messages must have a date before the
11 * specified date in order to match the condition.
12 */
13final class Before extends AbstractDate
14{
15 /**
16 * Returns the keyword that the condition represents.
17 */
18 protected function getKeyword(): string
19 {
20 return 'BEFORE';
21 }
22}