remove compose file to another repo

This commit is contained in:
2025-05-05 15:30:11 +03:30
parent 02ef3ae2ad
commit 3b739558ee
179 changed files with 130 additions and 341 deletions

12
app/Enums/CallEvents.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace App\Enums;
enum CallEvents: int
{
case CALL_CREATED = 1;
case OPERATOR_IS_OFFLINE = 2;
case OPERATOR_COULD_NOT_CONNECT = 3;
case OPERATOR_STORED_CALL_DATA = 4;
case NOTIFICATION_SERVER_NOT_RESPONDING = 5;
}