PocketMine-MP 5.21.2 git-a6534ecbbbcf369264567d27e5ed70f7f5be9816
Loading...
Searching...
No Matches
BuiltInTypes.php
1<?php declare(strict_types = 1);
2
3namespace DaveRandom\CallbackValidator;
4
5final class BuiltInTypes
6{
10 private function __construct() { }
11
12 const STRING = 'string';
13 const INT = 'int';
14 const FLOAT = 'float';
15 const BOOL = 'bool';
16 const ARRAY = 'array';
17 const VOID = 'void';
18 const CALLABLE = 'callable';
19 const ITERABLE = 'iterable';
20}