minor fixes

This commit is contained in:
RainLoop Team 2013-11-12 11:28:48 +04:00
parent 0b7afb5b7b
commit ae994735a8
434 changed files with 15 additions and 15 deletions

View file

@ -0,0 +1,17 @@
<?php
namespace MailSo\Imap\Enumerations;
/**
* @category MailSo
* @package Imap
* @subpackage Enumerations
*/
class FolderStatus
{
const MESSAGES = 'MESSAGES';
const RECENT = 'RECENT';
const UNSEEN = 'UNSEEN';
const UIDNEXT = 'UIDNEXT';
const UIDVALIDITY = 'UIDVALIDITY';
}