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.
|
- <?php
-
- namespace App\Codes\FourSMessage;
-
- /**
- * 受付状態
- */
- enum RequestStatus: string
- {
- case NONE = '';
- case DONE = '00'; // 受付済
- case CANCELED = '00'; // 受付取消
- case FAILED = '00'; // 受付失敗
- }
|