ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
Ordinal.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 enum Ordinal: int
27 {
28  case FIRST = 1;
29  case SECOND = 2;
30  case THIRD = 3;
31  case FOURTH = 4;
32  case FIFTH = 5;
33  case LAST = -1;
34 }
Ordinal
Technically these also include the sign...
Definition: Ordinal.php:26