for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ddeboer\Imap\Search\Flag;
use Ddeboer\Imap\Search\AbstractCondition;
/**
* Represents an SEEN flag condition. Messages must have the \\SEEN flag
* set in order to match the condition.
*/
class Seen extends AbstractCondition
{
* Returns the keyword that the condition represents.
*
* @return string
public function getKeyword()
return 'SEEN';
}