EnumToInt.php 202 B

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