1 2 3 4 5 6 7 8
<?php enum InputType: string { case INT = 'i'; case FLOAT = 'f'; case BOOL = 'b'; case STRING = 's'; }