PocketMine-MP 5.33.2 git-919492bdcad8510eb6606439eb77e1c604f1d1ea
Loading...
Searching...
No Matches
BuiltInType.php
1<?php declare(strict_types=1);
2
3namespace DaveRandom\CallbackValidator;
4
5enum BuiltInType: string{
6 case STRING = 'string';
7 case INT = 'int';
8 case FLOAT = 'float';
9 case BOOL = 'bool';
10 case ARRAY = 'array';
11 case VOID = 'void';
12 case CALLABLE = 'callable';
13 case ITERABLE = 'iterable';
14 case OBJECT = 'object';
15 case MIXED = 'mixed';
16 case NULL = 'null';
17}