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
189 B
PHP
13 lines
189 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class ScriptExecutionStatus
|
|
{
|
|
const string EXECUTING = 'executing';
|
|
|
|
const string COMPLETED = 'completed';
|
|
|
|
const string FAILED = 'failed';
|
|
}
|