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
21 lines
341 B
PHP
21 lines
341 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
final class CronjobStatus
|
|
{
|
|
const string CREATING = 'creating';
|
|
|
|
const string READY = 'ready';
|
|
|
|
const string DELETING = 'deleting';
|
|
|
|
const string ENABLING = 'enabling';
|
|
|
|
const string DISABLING = 'disabling';
|
|
|
|
const string UPDATING = 'updating';
|
|
|
|
const string DISABLED = 'disabled';
|
|
}
|