Renamed EncryptionChannelState.php to EncryptionChannelStatus.php

This commit is contained in:
netkas 2025-02-21 22:58:45 -05:00
parent 1f5a04d04e
commit 4a2a307fed

View file

@ -2,11 +2,12 @@
namespace Socialbox\Enums\Status; namespace Socialbox\Enums\Status;
enum EncryptionChannelState : string enum EncryptionChannelStatus : string
{ {
case AWAITING_RECEIVER = 'AWAITING_RECEIVER'; case AWAITING_RECEIVER = 'AWAITING_RECEIVER';
case SERVER_REJECTED = 'SERVER_REJECTED';
case PEER_REJECTED = 'PEER_REJECTED';
case ERROR = 'ERROR'; case ERROR = 'ERROR';
case DECLINED = 'DECLINED';
case OPENED = 'OPENED'; case OPENED = 'OPENED';
case CLOSED = 'CLOSED'; case CLOSED = 'CLOSED';
} }