for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ddeboer\Imap\Search\State;
use Ddeboer\Imap\Search\AbstractCondition;
/**
* Represents a NEW condition. Only new messages will match this condition.
*/
class NewMessage extends AbstractCondition
{
* Returns the keyword that the condition represents.
*
* @return string
public function getKeyword()
return 'NEW';
}