AppPushEnum.php 386 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace common\enums;
  3. /**
  4. * Class AppPushEnum
  5. * @package common\enums
  6. */
  7. class AppPushEnum extends BaseEnum
  8. {
  9. const J_PUSH = 'jPush';
  10. const GE_TUI = 'geTui';
  11. /**
  12. * @return string[]
  13. */
  14. public static function getMap(): array
  15. {
  16. return [
  17. self::J_PUSH => '极光推送',
  18. self::GE_TUI => '个推',
  19. ];
  20. }
  21. }
粤ICP备19079148号