Files
panel/app/Enums/Server/Status.php
2023-01-15 16:38:51 +00:00

15 lines
355 B
PHP

<?php
namespace Convoy\Enums\Server;
enum Status: string
{
case INSTALLING = 'installing';
case INSTALL_FAILED = 'install_failed';
case SUSPENDED = 'suspended';
case RESTORING_BACKUP = 'restoring_backup';
case RESTORING_SNAPSHOT = 'restoring_snapshot';
case DELETING = 'deleting';
case DELETION_FAILED = 'deletion_failed';
}