clivern-imap/src/Core/Search/Condition/Answered.php

27 lines
398 B
PHP

<?php
/*
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
*/
namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition;
/**
* Answered Class.
*/
class Answered implements Condition
{
/**
* Query String.
*
* @return string
*/
public function __toString()
{
return 'ANSWERED';
}
}