| 1234567891011121314151617181920 |
- <?php
- namespace App\Enums;
- use BenSampo\Enum\Enum;
- /**
- * @method static static OptionOne()
- * @method static static OptionTwo()
- * @method static static OptionThree()
- */
- final class ApiEnum extends Enum
- {
- const PHOTO_DESTROY_LOCK = "photo_destroy_lock_"; //阅后即焚操作
- const PHOTO_DESTROY_URL = "photo_destroy_url_"; //阅后即焚_销毁记录
- const DYNAMIC_RELEASE = "dynamic_release_"; //发布动态
- const DYNAMIC_ZAN = "dynamic_zan_"; //动态点赞
- const GET_WEIXIN = "get_weixin_"; //解锁微信
- }
|