ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
MailFolderType.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Mail\Folder;
22
23enum MailFolderType: string
24{
25 case ROOT = 'root';
26 case INBOX = 'inbox';
27 case TRASH = 'trash';
28 case DRAFTS = 'drafts';
29 case SENT = 'sent';
30 case LOCAL = 'local';
31 case USER = 'user_folder';