Files
vito/app/Enums/DeploymentStatus.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

13 lines
182 B
PHP

<?php
namespace App\Enums;
final class DeploymentStatus
{
const string DEPLOYING = 'deploying';
const string FINISHED = 'finished';
const string FAILED = 'failed';
}