ApiEnum.php 616 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Enums;
  3. use BenSampo\Enum\Enum;
  4. /**
  5. * @method static static OptionOne()
  6. * @method static static OptionTwo()
  7. * @method static static OptionThree()
  8. */
  9. final class ApiEnum extends Enum
  10. {
  11. const PHOTO_DESTROY_LOCK = "photo_destroy_lock_"; //阅后即焚操作
  12. const PHOTO_DESTROY_URL = "photo_destroy_url_"; //阅后即焚_销毁记录
  13. const DYNAMIC_RELEASE = "dynamic_release_"; //发布动态
  14. const DYNAMIC_ZAN = "dynamic_zan_"; //动态点赞
  15. const GET_WEIXIN = "get_weixin_"; //解锁微信
  16. const SET_GYG_SEX = "set_gyg_sex_"; //逛一逛设置性别
  17. }