ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
Month.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 enum Month: int
24 {
25  case JANUARY = 1;
26  case FEBRUARY = 2;
27  case MARCH = 3;
28  case APRIL = 4;
29  case MAY = 5;
30  case JUNE = 6;
31  case JULY = 7;
32  case AUGUST = 8;
33  case SEPTEMBER = 9;
34  case OCTOBER = 10;
35  case NOVEMBER = 11;
36  case DECEMBER = 12;
37 }