EnumToString.php 215 B

1234567891011121314151617
  1. <?php
  2. namespace UCore\Enum;
  3. trait EnumToString
  4. {
  5. public function valueString(): string
  6. {
  7. return $this->value;
  8. }
  9. public function value(): string
  10. {
  11. return $this->value;
  12. }
  13. }