blob: 72d0642c1c4e191ac1164bd3b6c31ac8bbb98d64 [file] [log] [blame]
Matthias Andreas Benkardb382b102021-01-02 15:32:21 +01001<?php
2
3declare(strict_types=1);
4
5namespace Ddeboer\Imap\Search\Email;
6
7use Ddeboer\Imap\Search\AbstractText;
8
9/**
10 * Represents a "Cc" email address condition. Messages must have been addressed
11 * to the specified recipient (along with any others) in order to match the
12 * condition.
13 */
14final class Cc extends AbstractText
15{
16 /**
17 * Returns the keyword that the condition represents.
18 */
19 protected function getKeyword(): string
20 {
21 return 'CC';
22 }
23}