PocketMine-MP 5.35.1 git-e32e836dad793a3a3c8ddd8927c00e112b1e576a
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}