tp6混合easyswoole DLL 多应用模式 修改版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
570 B

5 years ago
  1. <?php
  2. /**
  3. * @CreateTime: 2019/9/9 下午05:51
  4. * @Author: huizhang <tuzisir@163.com>
  5. * @Copyright: copyright(2019) Easyswoole all rights reserved
  6. * @Description: SplArray 单元测试
  7. */
  8. namespace EasySwoole\Spl\Test\Enum;
  9. use EasySwoole\Spl\SplEnum;
  10. class Month extends SplEnum {
  11. const JANUARY = 1;
  12. const FEBRUARY = 2;
  13. const MARCH = 3;
  14. const APRIL = 4;
  15. const MAY = 5;
  16. const JUNE = 6;
  17. const JULY = 7;
  18. const AUGUST = 8;
  19. const SEPTEMBER = 9;
  20. const OCTOBER = 10;
  21. const NOVEMBER = 11;
  22. const DECEMBER = 12;
  23. }