Files
vito/app/Enums/SiteStatus.php
Saeed Vaziry 131b828807 Plugins base (#613)
* wip

* wip

* cleanup

* notification channels

* phpstan

* services

* remove server types

* refactoring

* refactoring
2025-06-14 14:35:18 +02:00

15 lines
239 B
PHP

<?php
namespace App\Enums;
final class SiteStatus
{
const string READY = 'ready';
const string INSTALLING = 'installing';
const string INSTALLATION_FAILED = 'installation_failed';
const string DELETING = 'deleting';
}