RequirementReasonStatus.php 358 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Created by IntelliJ IDEA.
  4. * User: kelyliang
  5. * Date: 2024/2/26
  6. * Time: 下午 04:03
  7. */
  8. namespace App\Models\Enums;
  9. enum RequirementReasonStatus: string
  10. {
  11. case ALREADYDONE = 'Already Done';
  12. case DUPLICATE = 'Duplicate';
  13. case POSTPONED= 'Postponed';
  14. case WONTDO= "Wont'Do";
  15. case CANCELLED= 'Cancelled';
  16. case ASDESIGNED= 'As Designed';
  17. }