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