PushConst.php 354 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Consts;
  3. class PushConst
  4. {
  5. const TOPIC_ALL = 'all';
  6. const PROVIDER_HW = 'huawei';
  7. const PROVIDER_MI = 'xiaomi';
  8. const PROVIDER_OPPO = 'oppo';
  9. const PUSH_STATUS_TODO = 1;
  10. const PUSH_STATUS_DOING = 2;
  11. const PUSH_STATUS_SUCCESS = 3;
  12. const PUSH_STATUS_FAIL = 4;
  13. const PUSH_STATUS_STOP = 5;
  14. }