REQUEST_SOURCE.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/Common.proto
  5. namespace Proto\Api;
  6. use UnexpectedValueException;
  7. /**
  8. * 请求来源
  9. *
  10. * Protobuf type <code>proto.api.REQUEST_SOURCE</code>
  11. */
  12. class REQUEST_SOURCE
  13. {
  14. /**
  15. * 保留
  16. *
  17. * Generated from protobuf enum <code>REQUEST_SOURCE_RESERVED = 0;</code>
  18. */
  19. const REQUEST_SOURCE_RESERVED = 0;
  20. /**
  21. * 微信小程序
  22. *
  23. * Generated from protobuf enum <code>REQUEST_SOURCE_WECHAT = 1;</code>
  24. */
  25. const REQUEST_SOURCE_WECHAT = 1;
  26. private static $valueToName = [
  27. self::REQUEST_SOURCE_RESERVED => 'REQUEST_SOURCE_RESERVED',
  28. self::REQUEST_SOURCE_WECHAT => 'REQUEST_SOURCE_WECHAT',
  29. ];
  30. public static function name($value)
  31. {
  32. if (!isset(self::$valueToName[$value])) {
  33. throw new UnexpectedValueException(sprintf(
  34. 'Enum %s has no name defined for value %s', __CLASS__, $value));
  35. }
  36. return self::$valueToName[$value];
  37. }
  38. public static function value($name)
  39. {
  40. $const = __CLASS__ . '::' . strtoupper($name);
  41. if (!defined($const)) {
  42. throw new UnexpectedValueException(sprintf(
  43. 'Enum %s has no value defined for name %s', __CLASS__, $name));
  44. }
  45. return constant($const);
  46. }
  47. }