1
0
Fork 0
mirror of synced 2024-10-01 09:47:43 +13:00

Remove commented out MessageStatus enum

This commit is contained in:
Steven Nguyen 2024-01-19 01:53:56 +00:00
parent 3b7d3e6139
commit e597def3f3
No known key found for this signature in database
GPG key ID: 22EB8611C67E9E5C

View file

@ -2,31 +2,6 @@
namespace Appwrite\Enum;
// TODO: Convert to backed enum after upgrading to PHP 8.1
// enum MessageStatus: string
// {
// /**
// * Message that is not ready to be sent
// */
// case Draft = 'draft';
// /**
// * Scheduled to be sent for a later time
// */
// case Scheduled = 'scheduled';
// /**
// * Picked up by the worker and starting to send
// */
// case Processing = 'processing';
// /**
// * Sent without errors
// */
// case Sent = 'sent';
// /**
// * Sent with some errors
// */
// case Failed = 'failed';
// }
class MessageStatus
{
/**