領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
234B

  1. <?php
  2. namespace App\Codes\FourSMessage;
  3. /**
  4. * 受付状態
  5. */
  6. enum RequestStatus: string
  7. {
  8. case NONE = '';
  9. case DONE = '00'; // 受付済
  10. case CANCELED = '00'; // 受付取消
  11. case FAILED = '00'; // 受付失敗
  12. }