TaskStatusEnum.php 425 B

1234567891011121314151617
  1. <?php
  2. namespace MGModule\DNSManager2\models\custom\task;
  3. use MGModule\DNSManager2\mgLibs\custom;
  4. class TaskStatusEnum extends custom\BasicEnumAbstract
  5. {
  6. const START = 'start';
  7. const IN_PROGRESS = 'in_progress';
  8. const PENDING = 'pending';
  9. const ABORTED = 'aborted';
  10. const CANCELED = 'canceled';
  11. const FINISHED = 'finished';
  12. const ERROR = 'error';
  13. const WAITING = 'waiting';
  14. }