ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Month.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23enum 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;