Clear(); } /** * @return \MailSo\Mail\MessageCollection */ public static function NewInstance() { return new self(); } /** * @return \MailSo\Mail\MessageCollection */ public function Clear() { parent::Clear(); $this->FolderHash = ''; $this->MessageCount = 0; $this->MessageUnseenCount = 0; $this->MessageResultCount = 0; $this->FolderName = ''; $this->Offset = 0; $this->Limit = 0; $this->Search = ''; $this->UidNext = ''; $this->ThreadUid = ''; $this->NewMessages = array(); $this->Filtered = false; return $this; } }