blob: 09c3017b80e7ad238e1b49e3a42a339feec89a4a [file] [log] [blame]
<?php
declare(strict_types=1);
namespace Ddeboer\Imap\Search\Text;
use Ddeboer\Imap\Search\AbstractText;
/**
* Represents a message text contains condition. Messages must contain the
* specified text in order to match the condition.
*/
final class Text extends AbstractText
{
/**
* Returns the keyword that the condition represents.
*/
protected function getKeyword(): string
{
return 'TEXT';
}
}