13 lines
283 B
PHP
13 lines
283 B
PHP
![]() |
<?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';
|
||
|
}
|