mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-04 07:22:34 +00:00
* wip * wip * cleanup * notification channels * phpstan * services * remove server types * refactoring * refactoring
13 lines
182 B
PHP
13 lines
182 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class DeploymentStatus
|
|
{
|
|
const string DEPLOYING = 'deploying';
|
|
|
|
const string FINISHED = 'finished';
|
|
|
|
const string FAILED = 'failed';
|
|
}
|