blob: 3aed28c9cf0082385648aae6c7101110ed1b067f [file] [log] [blame]
<?php
declare(strict_types=1);
namespace Ddeboer\Imap\Search;
/**
* Represents a condition that can be used in a search expression.
*/
interface ConditionInterface
{
/**
* Converts the condition to a string that can be sent to the IMAP server.
*/
public function toString(): string;
}