ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Ordinal.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26enum 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;
Ordinal
Technically these also include the sign...
Definition: Ordinal.php:27