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

27 lines
398 B
PHP
Raw Normal View History

2017-08-12 01:25:32 +02:00
<?php
/*
* This file is part of the Imap PHP package.
* (c) Clivern <hello@clivern.com>
2017-08-12 01:25:32 +02:00
*/
namespace Clivern\Imap\Core\Search\Condition;
use Clivern\Imap\Core\Search\Contract\Condition;
/**
* Answered Class.
2017-08-12 01:25:32 +02:00
*/
class Answered implements Condition
{
2017-08-13 13:36:19 +02:00
/**
* Query String.
2017-08-13 13:36:19 +02:00
*
* @return string
*/
public function __toString()
{
return 'ANSWERED';
2017-08-13 13:36:19 +02:00
}
}