EnumName.php 229 B

123456789101112131415161718192021
  1. <?php
  2. namespace UCore\Enum;
  3. /**
  4. * 普通枚举
  5. *
  6. */
  7. trait EnumName
  8. {
  9. public function name(): string
  10. {
  11. return $this->name;
  12. }
  13. public function value(): string
  14. {
  15. return $this->name;
  16. }
  17. }