領収証発行サービス
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.

14 lines
190B

  1. <?php
  2. namespace App\Codes\FourSMessage;
  3. /**
  4. * 送信状態
  5. */
  6. enum SendingStatus: string
  7. {
  8. case NONE = '';
  9. case SENDING = '10'; // 送信中
  10. case DONE = '20'; // 送信済
  11. }