Added Encrypted channels and communication methods

This commit is contained in:
netkas 2025-02-06 15:13:00 -05:00
parent b380df95fe
commit 0e08bef3bc
10 changed files with 1066 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<?php
namespace Socialbox\Enums\Status;
enum EncryptionChannelState : string
{
case AWAITING_RECEIVER = 'AWAITING_RECEIVER';
case ERROR = 'ERROR';
case DECLINED = 'DECLINED';
case OPENED = 'OPENED';
case CLOSED = 'CLOSED';
}